Changeset 21942 for branches/version-2_12-dev/html/install/sql
- Timestamp:
- 2012/06/26 21:28:06 (14 years ago)
- Location:
- branches/version-2_12-dev/html/install/sql
- Files:
-
- 4 edited
-
create_table_mysql.sql (modified) (1 diff)
-
create_table_pgsql.sql (modified) (1 diff)
-
drop_table.sql (modified) (1 diff)
-
insert_data.sql (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/version-2_12-dev/html/install/sql/create_table_mysql.sql
r21908 r21942 998 998 ); 999 999 1000 CREATE TABLE mtb_customer_order_status ( 1001 id smallint, 1002 name text, 1003 rank smallint NOT NULL DEFAULT 0, 1004 PRIMARY KEY (id) 1005 ); 1006 1000 1007 CREATE TABLE mtb_order_status_color ( 1001 1008 id smallint, -
branches/version-2_12-dev/html/install/sql/create_table_pgsql.sql
r21908 r21942 998 998 ); 999 999 1000 CREATE TABLE mtb_customer_order_status ( 1001 id smallint, 1002 name text, 1003 rank smallint NOT NULL DEFAULT 0, 1004 PRIMARY KEY (id) 1005 ); 1006 1000 1007 CREATE TABLE mtb_order_status_color ( 1001 1008 id smallint, -
branches/version-2_12-dev/html/install/sql/drop_table.sql
r21713 r21942 59 59 DROP TABLE mtb_order_status_color; 60 60 DROP TABLE mtb_order_status; 61 DROP TABLE mtb_customer_order_status; 61 62 DROP TABLE mtb_mail_type; 62 63 DROP TABLE mtb_mail_tpl_path; -
branches/version-2_12-dev/html/install/sql/insert_data.sql
r21920 r21942 845 845 INSERT INTO mtb_order_status_color (id, name, rank) VALUES (6, '#FFFFAB', 5); 846 846 INSERT INTO mtb_order_status_color (id, name, rank) VALUES (7, '#FFCCCC', 6); 847 848 INSERT INTO mtb_customer_order_status (id, name, rank) VALUES (7, '注文未完了', 0); 849 INSERT INTO mtb_customer_order_status (id, name, rank) VALUES (1, '注文受付', 1); 850 INSERT INTO mtb_customer_order_status (id, name, rank) VALUES (2, '入金待ち', 2); 851 INSERT INTO mtb_customer_order_status (id, name, rank) VALUES (6, '注文受付', 3); 852 INSERT INTO mtb_customer_order_status (id, name, rank) VALUES (3, 'キャンセル', 4); 853 INSERT INTO mtb_customer_order_status (id, name, rank) VALUES (4, '注文受付', 5); 854 INSERT INTO mtb_customer_order_status (id, name, rank) VALUES (5, '発送済み', 6); 847 855 848 856 INSERT INTO mtb_ownersstore_err (id, name, rank) VALUES ('1000', '不明なエラーが発生しました。', 0);
Note: See TracChangeset
for help on using the changeset viewer.
