Changeset 20319
- Timestamp:
- 2011/02/22 10:59:52 (11 years ago)
- Location:
- branches/version-2_5-dev
- Files:
-
- 2 deleted
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/version-2_5-dev/eccube_install.sh
r20116 r20319 114 114 su ${PGUSER} -c "${PSQL} -U ${DBUSER} -f ${SQL_DIR}/create_view.sql ${DBNAME}" 115 115 116 echo "adding table comment..."117 su ${PGUSER} -c "${PSQL} -U ${DBUSER} -f ${SQL_DIR}/table_comment.sql ${DBNAME}"118 119 116 echo "adding tables..." 120 117 su ${PGUSER} -c "${PSQL} -U ${DBUSER} -f ${SQL_DIR}/add/dtb_campaign_order_pgsql.sql ${DBNAME}" -
branches/version-2_5-dev/html/install/sql/create_table_mysql.sql
r20313 r20319 890 890 ) ENGINE=InnoDB; 891 891 892 CREATE TABLE dtb_table_comment (893 id int,894 table_name text,895 column_name text,896 description text,897 PRIMARY KEY (id)898 ) ENGINE=InnoDB;899 900 892 CREATE TABLE dtb_maker ( 901 893 maker_id int NOT NULL, -
branches/version-2_5-dev/html/install/sql/create_table_pgsql.sql
r20313 r20319 890 890 ); 891 891 892 CREATE TABLE dtb_table_comment (893 id int,894 table_name text,895 column_name text,896 description text,897 PRIMARY KEY (id)898 );899 900 892 CREATE TABLE dtb_maker ( 901 893 maker_id int NOT NULL, -
branches/version-2_5-dev/html/install/sql/drop_table.sql
r20204 r20319 46 46 DROP TABLE dtb_csv_sql; 47 47 DROP TABLE dtb_templates; 48 DROP TABLE dtb_table_comment;49 48 DROP TABLE dtb_ownersstore_settings; 50 49 DROP TABLE dtb_module_update_logs;
Note: See TracChangeset
for help on using the changeset viewer.