1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-10 18:54:08 +02:00

Preparations for possible move of forum_auth fields

git-svn-id: file:///svn/phpbb/trunk@441 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Paul S. Owen
2001-06-08 18:08:15 +00:00
parent 820df16055
commit 9c61aca1b5
3 changed files with 29 additions and 4 deletions

View File

@@ -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),