Ignore:
Timestamp:
2010/08/06 14:52:59 (14 years ago)
Author:
eccuore
Message:

#792(ダウンロード販売機能) 機能追加

File:
1 edited

Legend:

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

    r18776 r18777  
    149149    regular_holiday_ids text, 
    150150    latitude text, 
    151     longitude text 
     151    longitude text, 
     152    downloadable_days numeric DEFAULT 30, 
     153    downloadable_days_unlimited smallint 
    152154); 
    153155 
     
    341343    update_date timestamp, 
    342344    deliv_date_id int, 
     345    down int2 NOT NULL , 
     346    down_filename text, 
     347    down_realfilename text, 
    343348    PRIMARY KEY (product_id) 
    344349); 
     
    12901295    PRIMARY KEY (id) 
    12911296); 
     1297 
     1298CREATE TABLE mtb_down ( 
     1299    id int2, 
     1300    name text, 
     1301    rank int2 NOT NULL, 
     1302    PRIMARY KEY (id) 
     1303); 
     1304 
Note: See TracChangeset for help on using the changeset viewer.