From 9c61aca1b5ddb517814da2c2fdc771dbe4e2fdf2 Mon Sep 17 00:00:00 2001 From: "Paul S. Owen" Date: Fri, 8 Jun 2001 18:08:15 +0000 Subject: Preparations for possible move of forum_auth fields git-svn-id: file:///svn/phpbb/trunk@441 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/db/mysql_schema.sql | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) (limited to 'phpBB/db/mysql_schema.sql') diff --git a/phpBB/db/mysql_schema.sql b/phpBB/db/mysql_schema.sql index bf6ea64c2c..54645c0dc3 100644 --- a/phpBB/db/mysql_schema.sql +++ b/phpBB/db/mysql_schema.sql @@ -1,7 +1,7 @@ # # phpBB2 - MySQL schema # -# $id: mysql_schema.sql,v 1.5 2001/03/23 15:57:52 psotfx Exp $ +# $Id$ # # @@ -180,6 +180,17 @@ CREATE TABLE phpbb_forums ( forum_posts int(11) DEFAULT '0' NOT NULL, forum_topics tinyint(4) DEFAULT '0' NOT NULL, forum_last_post_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 PRIMARY KEY (forum_id), KEY forum_id (forum_id), KEY forums_order (forum_order), -- cgit v1.2.1