Ignore:
Timestamp:
2012/03/17 16:40:27 (12 years ago)
Author:
Seasoft
Message:

#1705 (NOT NULL 制約)

  • ポイント周り

#1613 (typo修正・ソース整形・ソースコメントの改善)
#1692 (プラグイン機能(α版))

  • DB 間で列順を揃えた
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_12-dev/html/install/sql/create_table_pgsql.sql

    r21643 r21653  
    315315    price02 numeric NOT NULL, 
    316316    deliv_fee numeric, 
    317     point_rate numeric, 
     317    point_rate numeric NOT NULL DEFAULT 0, 
    318318    creator_id int NOT NULL, 
    319319    create_date timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, 
     
    500500    buy_times numeric DEFAULT 0, 
    501501    buy_total numeric DEFAULT 0, 
    502     point numeric DEFAULT 0, 
     502    point numeric NOT NULL DEFAULT 0, 
    503503    note text, 
    504504    status smallint NOT NULL DEFAULT 1, 
     
    541541    deliv_fee numeric, 
    542542    charge numeric, 
    543     use_point numeric, 
    544     add_point numeric, 
    545     birth_point numeric DEFAULT 0, 
     543    use_point numeric NOT NULL DEFAULT 0, 
     544    add_point numeric NOT NULL DEFAULT 0, 
     545    birth_point numeric NOT NULL DEFAULT 0, 
    546546    tax numeric, 
    547547    total numeric, 
     
    598598    deliv_fee numeric, 
    599599    charge numeric, 
    600     use_point numeric, 
    601     add_point numeric, 
    602     birth_point numeric DEFAULT 0, 
     600    use_point numeric NOT NULL DEFAULT 0, 
     601    add_point numeric NOT NULL DEFAULT 0, 
     602    birth_point numeric NOT NULL DEFAULT 0, 
    603603    tax numeric, 
    604604    total numeric, 
     
    701701    price numeric, 
    702702    quantity numeric, 
    703     point_rate numeric, 
     703    point_rate numeric NOT NULL DEFAULT 0, 
    704704    PRIMARY KEY (order_detail_id) 
    705705); 
Note: See TracChangeset for help on using the changeset viewer.