Ok, a schema fix... Not a terrible problem....

git-svn-id: file:///svn/phpbb/trunk@2646 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
dougk_ff7 2002-06-27 19:55:26 +00:00
parent 3a233ee6bb
commit 46b8fc7cfe

View file

@ -14,7 +14,7 @@ CREATE TABLE phpbb_auth_groups (
forum_id mediumint(8) unsigned NOT NULL default '0',
auth_option_id smallint(5) unsigned NOT NULL default '0',
auth_allow_deny tinyint(4) NOT NULL default '1'
)
);
#
@ -24,7 +24,7 @@ CREATE TABLE phpbb_auth_options (
auth_option_id tinyint(4) NOT NULL auto_increment,
auth_option char(20) NOT NULL default '',
PRIMARY KEY (auth_option_id,auth_option)
)
);
# --------------------------------------------------------
@ -36,7 +36,7 @@ CREATE TABLE phpbb_auth_prefetch (
forum_id mediumint(8) unsigned NOT NULL default '0',
auth_option_id smallint(5) unsigned NOT NULL default '0',
auth_allow_deny tinyint(4) NOT NULL default '1')
)
);
# --------------------------------------------------------
@ -48,7 +48,7 @@ CREATE TABLE phpbb_auth_users (
forum_id mediumint(8) unsigned NOT NULL default '0',
auth_option_id smallint(5) unsigned NOT NULL default '0',
auth_allow_deny tinyint(4) NOT NULL default '1'
)
);
# --------------------------------------------------------