- Timestamp:
- 2009/05/15 16:30:40 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/version-2/html/install/sql/create_table_pgsql.sql
r17143 r18007 141 141 mypage_tpl text, 142 142 good_traded text, 143 message text 143 message text, 144 regular_holiday_ids text 144 145 ); 145 146 … … 285 286 comment5 text, 286 287 comment6 text, 288 note text, 287 289 file1 text, 288 290 file2 text, … … 461 463 create_date timestamp NOT NULL, 462 464 update_date timestamp NOT NULL DEFAULT NOW() 465 ); 466 467 CREATE TABLE dtb_customer_favorite_products ( 468 customer_id int4 NOT NULL, 469 product_id int4 NOT NULL, 470 create_date timestamp NOT NULL DEFAULT now(), 471 update_date timestamp NOT NULL DEFAULT now(), 472 PRIMARY KEY (customer_id, product_id) 463 473 ); 464 474
Note: See TracChangeset
for help on using the changeset viewer.