aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install/schemas
diff options
context:
space:
mode:
authorPaul S. Owen <psotfx@users.sourceforge.net>2002-08-19 17:58:06 +0000
committerPaul S. Owen <psotfx@users.sourceforge.net>2002-08-19 17:58:06 +0000
commit6cf59bc2e964c30ebc1af8feba9d18c6ed88ae88 (patch)
tree41c76689bfcda518ad9436e0228fd9a0bb83a827 /phpBB/install/schemas
parent419ae3e5499b0569932ffb10fae55e388ae7a802 (diff)
downloadforums-6cf59bc2e964c30ebc1af8feba9d18c6ed88ae88.tar
forums-6cf59bc2e964c30ebc1af8feba9d18c6ed88ae88.tar.gz
forums-6cf59bc2e964c30ebc1af8feba9d18c6ed88ae88.tar.bz2
forums-6cf59bc2e964c30ebc1af8feba9d18c6ed88ae88.tar.xz
forums-6cf59bc2e964c30ebc1af8feba9d18c6ed88ae88.zip
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
Diffstat (limited to 'phpBB/install/schemas')
-rw-r--r--phpBB/install/schemas/mysql_schema.sql1
1 files changed, 1 insertions, 0 deletions
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)
);