Changeset 20246 for branches/version-2_5-dev/html
- Timestamp:
- 2011/02/20 12:03:00 (12 years ago)
- Location:
- branches/version-2_5-dev/html/install/sql
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/version-2_5-dev/html/install/sql/create_table_mysql.sql
r20198 r20246 1232 1232 CREATE TABLE dtb_plugin ( 1233 1233 plugin_id int NOT NULL, 1234 plugin_name varchar(255) NOT NULL, 1234 plugin_name varchar(255) NOT NULL DEFAULT '', 1235 plugin_code varchar(255) NOT NULL, 1236 author varchar(255) NOT NULL DEFAULT '', 1237 plugin_site_url varchar(255) NOT NULL DEFAULT '', 1238 plugin_version varchar(255) NOT NULL DEFAULT '', 1239 plugin_description varchar(255) NOT NULL DEFAULT '', 1240 plugin_setting_path varchar(255) NOT NULL DEFAULT '', 1241 class_name varchar(255) NOT NULL DEFAULT '', 1242 status smallint NOT NULL DEFAULT 0, 1235 1243 enable smallint NOT NULL DEFAULT 0, 1236 1244 del_flg smallint NOT NULL DEFAULT 0, 1237 class_name varchar(255) NOT NULL,1238 1245 create_date timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, 1239 1246 update_date timestamp NOT NULL, -
branches/version-2_5-dev/html/install/sql/create_table_pgsql.sql
r20198 r20246 1232 1232 CREATE TABLE dtb_plugin ( 1233 1233 plugin_id int NOT NULL, 1234 plugin_name text NOT NULL, 1234 plugin_name text NOT NULL DEFAULT '', 1235 plugin_code text NOT NULL, 1236 author text NOT NULL DEFAULT '', 1237 plugin_site_url text NOT NULL DEFAULT '', 1238 plugin_version text NOT NULL DEFAULT '', 1239 plugin_description text NOT NULL DEFAULT '', 1240 plugin_setting_path text NOT NULL DEFAULT '', 1241 class_name text NOT NULL DEFAULT '', 1242 status smallint NOT NULL DEFAULT 0, 1235 1243 enable smallint NOT NULL DEFAULT 0, 1236 1244 del_flg smallint NOT NULL DEFAULT 0, 1237 class_name text NOT NULL,1238 1245 create_date timestamp NOT NULL DEFAULT now(), 1239 1246 update_date timestamp NOT NULL, -
branches/version-2_5-dev/html/install/sql/insert_data.sql
r20211 r20246 1271 1271 INSERT INTO mtb_constants (id, name, rank, remarks) VALUES ('ECCUBE_INFO', 'true', 1218, ' EC-CUBE更新情報取得 (true:取得する false:取得しない)'); 1272 1272 INSERT INTO mtb_constants (id, name, rank, remarks) VALUES ('HTTP_REQUEST_TIMEOUT', '"5"', 1219, '外部サイトHTTP取得タイムアウト時間(秒)'); 1273 INSERT INTO mtb_constants (id, name, rank, remarks) VALUES ('PLUGIN_STATUS_UPLOADED', '"1"', 1220, 'プラグインの状態:アップロード済み'); 1274 INSERT INTO mtb_constants (id, name, rank, remarks) VALUES ('PLUGIN_STATUS_INSTALLED', '"2"', 1221, 'プラグインの状態:インストール済み'); 1275 INSERT INTO mtb_constants (id, name, rank, remarks) VALUES ('PLUGIN_ENABLE_TRUE', '"1"', 1222, 'プラグイン有効/無効:有効'); 1276 INSERT INTO mtb_constants (id, name, rank, remarks) VALUES ('PLUGIN_ENABLE_FALSE', '"2"', 1223, 'プラグイン有効/無効:無効'); 1273 1277 1274 1278 INSERT INTO dtb_index_list (table_name, column_name, recommend_flg, recommend_comment) VALUES ('dtb_customer', 'email_mobile', 0, '会員数増加時のログイン処理速度を向上させたいときに試してみてください');
Note: See TracChangeset
for help on using the changeset viewer.