Ignore:
Timestamp:
2012/04/09 02:33:16 (12 years ago)
Author:
Seasoft
Message:

#1718 (カテゴリー・メーカーが多重表示される場合がある)
#1613 (typo修正・ソース整形・ソースコメントの改善)

  • 実質的には意味が無いと思うが、他との記述統一の観点で NOT NULL を明記した。
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  
    245245 
    246246CREATE TABLE dtb_send_customer ( 
    247     customer_id int, 
     247    customer_id int NOT NULL, 
    248248    send_id int NOT NULL, 
    249249    email text, 
     
    816816    maker_id int NOT NULL, 
    817817    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) 
    819820); 
    820821 
  • branches/version-2_12-dev/html/install/sql/create_table_pgsql.sql

    r21713 r21715  
    245245 
    246246CREATE TABLE dtb_send_customer ( 
    247     customer_id int, 
     247    customer_id int NOT NULL, 
    248248    send_id int NOT NULL, 
    249249    email text, 
     
    816816    maker_id int NOT NULL, 
    817817    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) 
    819820); 
    820821 
Note: See TracChangeset for help on using the changeset viewer.