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_mysql.sql

    r18776 r18777  
    149149    regular_holiday_ids text, 
    150150    latitude text, 
    151     longitude text 
     151    longitude text, 
     152    regular_holiday_ids text, 
     153    downloadable_days numeric DEFAULT 30, 
     154    downloadable_days_unlimited smallint 
    152155) TYPE=InnoDB; 
    153156 
     
    341344    update_date datetime, 
    342345    deliv_date_id int, 
     346    down smallint NOT NULL , 
     347    down_filename text, 
     348    down_realfilename text, 
    343349    PRIMARY KEY (product_id) 
    344350) TYPE=InnoDB; 
     
    12921298    PRIMARY KEY (id(64)) 
    12931299) TYPE=InnoDB; 
     1300 
     1301CREATE TABLE mtb_down ( 
     1302    id int2, 
     1303    name text, 
     1304    rank int2 NOT NULL, 
     1305    PRIMARY KEY (id) 
     1306) TYPE=InnoDB; 
Note: See TracChangeset for help on using the changeset viewer.