Ignore:
Timestamp:
2013/03/09 18:40:25 (11 years ago)
Author:
tao
Message:

とりあえず国マスタと会員情報に国IDを追加

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/camp/camp-2_13-tax/html/install/sql/create_table_pgsql.sql

    r22619 r22637  
    7474    zip01 text, 
    7575    zip02 text, 
     76    country_id int, 
    7677    pref smallint, 
    7778    addr01 text, 
     
    8889    law_zip01 text, 
    8990    law_zip02 text, 
     91    law_country_id int, 
    9092    law_pref smallint, 
    9193    law_addr01 text, 
     
    485487    zip01 text, 
    486488    zip02 text, 
     489    country_id int, 
    487490    pref smallint, 
    488491    addr01 text, 
     
    538541    order_zip01 text, 
    539542    order_zip02 text, 
     543    order_country_id int, 
    540544    order_pref smallint, 
    541545    order_addr01 text, 
     
    597601    order_zip01 text, 
    598602    order_zip02 text, 
     603    order_country_id int, 
    599604    order_pref smallint, 
    600605    order_addr01 text, 
     
    655660    shipping_fax02 text, 
    656661    shipping_fax03 text, 
     662    shipping_country_id int, 
    657663    shipping_pref smallint, 
    658664    shipping_zip01 text, 
     
    694700    zip01 text, 
    695701    zip02 text, 
     702    country_id int, 
    696703    pref smallint, 
    697704    addr01 text, 
     
    11001107    name text, 
    11011108    rank smallint NOT NULL, 
     1109    PRIMARY KEY (id) 
     1110); 
     1111 
     1112CREATE TABLE mtb_country ( 
     1113    id int, 
     1114    name text, 
     1115    rank int NOT NULL, 
    11021116    PRIMARY KEY (id) 
    11031117); 
Note: See TracChangeset for help on using the changeset viewer.