1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-07 01:06:48 +02:00

Switched forum_auth to the forums table

git-svn-id: file:///svn/phpbb/trunk@507 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Paul S. Owen
2001-06-18 00:00:17 +00:00
parent 2ec0206283
commit 59c47a1309
3 changed files with 1 additions and 42 deletions

View File

@@ -27,26 +27,6 @@ CREATE TABLE phpbb_auth_access (
auth_admin tinyint(1) DEFAULT '0' NOT NULL
);
#
# Table structure for table 'phpbb_auth_forums'
#
DROP TABLE IF EXISTS phpbb_auth_forums;
CREATE TABLE phpbb_auth_forums (
forum_id int(11) DEFAULT '0' NOT NULL,
auth_view tinyint(4) DEFAULT '0' NOT NULL,
auth_read tinyint(4) DEFAULT '0' NOT NULL,
auth_post tinyint(4) DEFAULT '0' NOT NULL,
auth_reply tinyint(4) DEFAULT '0' NOT NULL,
auth_edit tinyint(4) DEFAULT '0' NOT NULL,
auth_delete tinyint(4) DEFAULT '0' NOT NULL,
auth_announce tinyint(4) DEFAULT '0' NOT NULL,
auth_sticky tinyint(4) DEFAULT '0' NOT NULL,
auth_votecreate tinyint(4) DEFAULT '0' NOT NULL,
auth_vote tinyint(4) DEFAULT '0' NOT NULL,
auth_attachments tinyint(4) DEFAULT '0' NOT NULL
);
#
# Table structure for table 'phpbb_user_group'
#