aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorPaul S. Owen <psotfx@users.sourceforge.net>2002-07-14 20:24:12 +0000
committerPaul S. Owen <psotfx@users.sourceforge.net>2002-07-14 20:24:12 +0000
commita0bb541974489a0bf0092eb91840ba9e4954a9d7 (patch)
tree99fc835e488a48444998def997cd919cc8de4e10 /phpBB
parent1ccb73e898b7eb51f5a626b9a7f9fcadd353c701 (diff)
downloadforums-a0bb541974489a0bf0092eb91840ba9e4954a9d7.tar
forums-a0bb541974489a0bf0092eb91840ba9e4954a9d7.tar.gz
forums-a0bb541974489a0bf0092eb91840ba9e4954a9d7.tar.bz2
forums-a0bb541974489a0bf0092eb91840ba9e4954a9d7.tar.xz
forums-a0bb541974489a0bf0092eb91840ba9e4954a9d7.zip
oops
git-svn-id: file:///svn/phpbb/trunk@2684 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/db/schemas/mysql_schema.sql3
1 files changed, 2 insertions, 1 deletions
diff --git a/phpBB/db/schemas/mysql_schema.sql b/phpBB/db/schemas/mysql_schema.sql
index 2b78fd993d..04c28e0da4 100644
--- a/phpBB/db/schemas/mysql_schema.sql
+++ b/phpBB/db/schemas/mysql_schema.sql
@@ -37,7 +37,8 @@ CREATE TABLE phpbb_auth_groups (
#
CREATE TABLE phpbb_auth_options (
auth_option_id tinyint(4) NOT NULL auto_increment,
- auth_option char(20) NOT NULL default '',
+ auth_type char(15) NOT NULL default '',
+ auth_option char(15) NOT NULL default '',
PRIMARY KEY (auth_option_id,auth_option)
);