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 20246)
+++ branches/version-2_5-dev/html/install/sql/create_table_mysql.sql	(revision 20313)
@@ -943,4 +943,11 @@
 ) ENGINE=InnoDB;
 
+CREATE TABLE mtb_auth_excludes (
+    id smallint,
+    name text,
+    rank smallint NOT NULL DEFAULT 0,
+    PRIMARY KEY (id)
+) ENGINE=InnoDB;
+
 CREATE TABLE mtb_work (
     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 20246)
+++ branches/version-2_5-dev/html/install/sql/create_table_pgsql.sql	(revision 20313)
@@ -943,4 +943,11 @@
 );
 
+CREATE TABLE mtb_auth_excludes (
+    id smallint,
+    name text,
+    rank smallint NOT NULL DEFAULT 0,
+    PRIMARY KEY (id)
+);
+
 CREATE TABLE mtb_work (
     id smallint,
Index: branches/version-2_5-dev/html/install/sql/insert_data.sql
===================================================================
--- branches/version-2_5-dev/html/install/sql/insert_data.sql	(revision 20295)
+++ branches/version-2_5-dev/html/install/sql/insert_data.sql	(revision 20313)
@@ -682,4 +682,7 @@
 INSERT INTO mtb_authority (id, name, rank) VALUES (0, 'システム管理者', 0);
 INSERT INTO mtb_authority (id, name, rank) VALUES (1, '店舗オーナー', 1);
+
+INSERT INTO mtb_auth_excludes (id, name, rank) VALUES (0, 'index.php', 0);
+INSERT INTO mtb_auth_excludes (id, name, rank) VALUES (1, 'logout.php', 1);
 
 INSERT INTO mtb_class (id, name, rank) VALUES (1, '規格無し', 0);
