From 6cf59bc2e964c30ebc1af8feba9d18c6ed88ae88 Mon Sep 17 00:00:00 2001 From: "Paul S. Owen" Date: Mon, 19 Aug 2002 17:58:06 +0000 Subject: [PATCH] Define auth_values which can only be manipulated by the forum founder git-svn-id: file:///svn/phpbb/trunk@2878 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/install/schemas/mysql_schema.sql | 1 + 1 file changed, 1 insertion(+) diff --git a/phpBB/install/schemas/mysql_schema.sql b/phpBB/install/schemas/mysql_schema.sql index 446923550f..b1228dff87 100644 --- a/phpBB/install/schemas/mysql_schema.sql +++ b/phpBB/install/schemas/mysql_schema.sql @@ -40,6 +40,7 @@ CREATE TABLE phpbb_auth_groups ( CREATE TABLE phpbb_auth_options ( auth_option_id tinyint(4) NOT NULL auto_increment, auth_value char(20) NOT NULL, + auth_founder_only tinyint(1) DEFAULT '0' NOT NULL, PRIMARY KEY (auth_option_id), KEY auth_value (auth_value) );