Ignore:
Timestamp:
2012/02/28 11:52:55 (12 years ago)
Author:
h_yoshimoto
Message:

#1603 #1632 プラグイン仕様変更に伴う修正(コミット漏れ+LC_Pageで正常にプラグインが動かないバグを修正)

Location:
branches/version-2_12-dev/html/install/sql
Files:
2 edited

Legend:

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

    r21553 r21559  
    750750    update_date timestamp NOT NULL, 
    751751    php_path text, 
     752    plugin_id int, 
    752753    deletable_flg smallint NOT NULL DEFAULT 1, 
    753754    PRIMARY KEY (device_type_id, bloc_id), 
     
    11211122    plugin_name text NOT NULL, 
    11221123    plugin_code text NOT NULL, 
     1124    class_name text NOT NULL, 
    11231125    author text, 
    11241126    author_site_url text, 
  • branches/version-2_12-dev/html/install/sql/create_table_pgsql.sql

    r21553 r21559  
    751751    php_path text, 
    752752    deletable_flg smallint NOT NULL DEFAULT 1, 
     753    plugin_id int NOT NULL, 
    753754    PRIMARY KEY (device_type_id, bloc_id), 
    754755    UNIQUE (device_type_id, filename) 
     
    11211122    plugin_name text NOT NULL, 
    11221123    plugin_code text NOT NULL, 
     1124    class_name text NOT NULL, 
    11231125    author text, 
    11241126    author_site_url text, 
Note: See TracChangeset for help on using the changeset viewer.