Index: branches/version-2_5-dev/html/install/sql/insert_data.sql
===================================================================
--- branches/version-2_5-dev/html/install/sql/insert_data.sql	(revision 20134)
+++ branches/version-2_5-dev/html/install/sql/insert_data.sql	(revision 20160)
@@ -927,4 +927,7 @@
 INSERT INTO mtb_sex (id, name, rank) VALUES (1, '男性', 0);
 INSERT INTO mtb_sex (id, name, rank) VALUES (2, '女性', 1);
+
+INSERT INTO mtb_customer_status (id, name, rank) VALUES (1, '仮会員', 0);
+INSERT INTO mtb_customer_status (id, name, rank) VALUES (2, '本会員', 1);
 
 INSERT INTO mtb_status (id, name, rank) VALUES (1, 'NEW', 0);
Index: branches/version-2_5-dev/html/install/sql/create_table_mysql.sql
===================================================================
--- branches/version-2_5-dev/html/install/sql/create_table_mysql.sql	(revision 20116)
+++ branches/version-2_5-dev/html/install/sql/create_table_mysql.sql	(revision 20160)
@@ -1056,4 +1056,11 @@
 ) ENGINE=InnoDB;
 
+CREATE TABLE mtb_customer_status (
+    id smallint,
+    name text,
+    rank smallint NOT NULL DEFAULT 0,
+    PRIMARY KEY (id)
+) ENGINE=InnoDB;
+
 CREATE TABLE mtb_page_rows (
     id smallint,
Index: branches/version-2_5-dev/html/install/sql/create_table_pgsql.sql
===================================================================
--- branches/version-2_5-dev/html/install/sql/create_table_pgsql.sql	(revision 20116)
+++ branches/version-2_5-dev/html/install/sql/create_table_pgsql.sql	(revision 20160)
@@ -1056,4 +1056,11 @@
 );
 
+CREATE TABLE mtb_customer_status (
+    id smallint,
+    name text,
+    rank smallint NOT NULL DEFAULT 0,
+    PRIMARY KEY (id)
+);
+
 CREATE TABLE mtb_page_rows (
     id smallint,
