Ignore:
Timestamp:
2012/02/08 13:55:06 (12 years ago)
Author:
h_yoshimoto
Message:

#1603 #1632 プラグインの管理画面を作成しました。それに伴うエンジン部分の修正。

File:
1 edited

Legend:

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

    r21364 r21455  
    11391139    plugin_code varchar(255) NOT NULL, 
    11401140    author varchar(255), 
     1141    author_site_url varchar(255), 
    11411142    plugin_site_url varchar(255), 
    11421143    plugin_version varchar(255), 
     1144    compliant_version varchar(255), 
    11431145    plugin_description varchar(255), 
    1144     plugin_setting_path varchar(255), 
    1145     class_name varchar(255) NOT NULL, 
    11461146    rank int NOT NULL DEFAULT 0, 
    1147     status smallint NOT NULL DEFAULT 0, 
    11481147    enable smallint NOT NULL DEFAULT 0, 
    1149     del_flg smallint NOT NULL DEFAULT 0, 
    11501148    create_date timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, 
    11511149    update_date timestamp NOT NULL, 
    11521150    PRIMARY KEY (plugin_id) 
     1151) ENGINE=InnoDB; 
     1152 
     1153CREATE TABLE dtb_plugin_hookpoint ( 
     1154    plugin_id int NOT NULL, 
     1155    hook_point varchar(255) NOT NULL, 
     1156    create_date timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, 
     1157    update_date timestamp NOT NULL 
    11531158) ENGINE=InnoDB; 
    11541159 
Note: See TracChangeset for help on using the changeset viewer.