Ignore:
Timestamp:
2012/02/08 19:48:01 (12 years ago)
Author:
h_yoshimoto
Message:

#1603 #1632 comu-ml:262にて頂いた箇所の修正、不要ディレクトリの削除

Location:
branches/version-2_12-dev/html
Files:
1 added
2 edited

Legend:

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

    r21455 r21458  
    11521152 
    11531153CREATE TABLE dtb_plugin_hookpoint ( 
     1154    id int NOT NULL, 
    11541155    plugin_id int NOT NULL, 
    11551156    hook_point varchar(255) NOT NULL, 
    11561157    create_date timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, 
    1157     update_date timestamp NOT NULL 
     1158    update_date timestamp NOT NULL, 
     1159    PRIMARY KEY (id) 
    11581160) ENGINE=InnoDB; 
    11591161 
  • branches/version-2_12-dev/html/install/sql/create_table_pgsql.sql

    r21455 r21458  
    11521152 
    11531153CREATE TABLE dtb_plugin_hookpoint ( 
     1154    id int NOT NULL, 
    11541155    plugin_id int NOT NULL, 
    11551156    hook_point text NOT NULL, 
    11561157    create_date timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, 
    1157     update_date timestamp NOT NULL 
     1158    update_date timestamp NOT NULL, 
     1159    PRIMARY KEY (plugin_id) 
    11581160); 
    11591161 
Note: See TracChangeset for help on using the changeset viewer.