Changeset 21715
- Timestamp:
- 2012/04/09 02:33:16 (11 years ago)
- Location:
- branches/version-2_12-dev/html/install/sql
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/version-2_12-dev/html/install/sql/create_table_mysql.sql
r21713 r21715 245 245 246 246 CREATE TABLE dtb_send_customer ( 247 customer_id int ,247 customer_id int NOT NULL, 248 248 send_id int NOT NULL, 249 249 email text, … … 816 816 maker_id int NOT NULL, 817 817 product_count int NOT NULL, 818 create_date timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP 818 create_date timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, 819 PRIMARY KEY (maker_id) 819 820 ); 820 821 -
branches/version-2_12-dev/html/install/sql/create_table_pgsql.sql
r21713 r21715 245 245 246 246 CREATE TABLE dtb_send_customer ( 247 customer_id int ,247 customer_id int NOT NULL, 248 248 send_id int NOT NULL, 249 249 email text, … … 816 816 maker_id int NOT NULL, 817 817 product_count int NOT NULL, 818 create_date timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP 818 create_date timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, 819 PRIMARY KEY (maker_id) 819 820 ); 820 821
Note: See TracChangeset
for help on using the changeset viewer.