Changeset 16779
- Timestamp:
- 2007/11/09 22:30:20 (15 years ago)
- Location:
- branches/feature-module-update/html/install/sql
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/feature-module-update/html/install/sql/create_table_mysql.sql
r16664 r16779 407 407 CREATE TABLE dtb_recommend_products ( 408 408 product_id int NOT NULL, 409 recommend_product_id int ,409 recommend_product_id int NOT NULL, 410 410 rank int NOT NULL, 411 411 comment text, -
branches/feature-module-update/html/install/sql/create_table_pgsql.sql
r16664 r16779 407 407 CREATE TABLE dtb_recommend_products ( 408 408 product_id int4 NOT NULL, 409 recommend_product_id serialNOT NULL,409 recommend_product_id int4 NOT NULL, 410 410 rank int4 NOT NULL, 411 411 comment text, -
branches/feature-module-update/html/install/sql/insert_data.sql
r16775 r16779 335 335 VALUES (2, 0, 0, 'nabe-01', 100, NULL, NULL, 1700, 1650, NULL, 2, now(), now()); 336 336 337 INSERT INTO dtb_recommend_products (product_id, rank,comment,status,creator_id,create_date,update_date) VALUES (2, 4, 'お口直しに。', 0, 2, now(), now());337 INSERT INTO dtb_recommend_products (product_id, recommend_product_id, rank,comment,status,creator_id,create_date,update_date) VALUES (2, 1, 4, 'お口直しに。', 0, 2, now(), now()); 338 338 339 339 INSERT INTO dtb_class (name,status,rank,creator_id,create_date,update_date,del_flg,product_id) VALUES ('味', NULL, 1, 2, now(), now(), 0, NULL); … … 804 804 INSERT INTO mtb_constants VALUES ('TV_PRODUCTS_MAX','10',64,'TV連動商品最大登録数'); 805 805 INSERT INTO mtb_constants VALUES ('DEFAULT_PASSWORD','"UAhgGR3L"',65,'会員登録変更(マイページ)パスワード用'); 806 INSERT INTO mtb_constants VALUES (' RECOMMEND_PRODUCT_MAX','6',66,'おすすめ商品数');806 INSERT INTO mtb_constants VALUES ('dtbDUCT_MAX','6',66,'おすすめ商品数'); 807 807 INSERT INTO mtb_constants VALUES ('DELIV_ADDR_MAX','20',67,'別のお届け先最大登録数'); 808 808 INSERT INTO mtb_constants VALUES ('CUSTOMER_READING_MAX','30',68,'閲覧履歴保存数');
Note: See TracChangeset
for help on using the changeset viewer.