source: branches/dev/html/install/sql/add/dtb_module_mysql.sql @ 15130

Revision 15130, 583 bytes checked in by adati, 17 years ago (diff)

1.4.2-betaリリース準備

Line 
1CREATE TABLE dtb_module (
2    module_id int NOT NULL UNIQUE,
3    module_name text NOT NULL,
4    now_version text,
5    latest_version text NOT NULL,
6    module_explain text,
7    main_php text NOT NULL,
8    extern_php text NOT NULL,
9    install_sql text,
10    uninstall_sql text,
11    other_files text,
12    del_flg smallint NOT NULL DEFAULT 0,
13    create_date datetime NOT NULL ,
14    update_date datetime,
15    release_date datetime NOT NULL,
16    sub_data text,
17    module_x int,
18    module_y int,
19    eccube_version text,
20    icon text,
21    url text
22) TYPE=InnoDB;
Note: See TracBrowser for help on using the repository browser.