diff options
author | Paul S. Owen <psotfx@users.sourceforge.net> | 2001-06-08 18:08:15 +0000 |
---|---|---|
committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2001-06-08 18:08:15 +0000 |
commit | 9c61aca1b5ddb517814da2c2fdc771dbe4e2fdf2 (patch) | |
tree | 60cf2659abab1b514e0115cf8bcd0b8cf2be3aa6 /phpBB/db/postgres_schema.sql | |
parent | 820df16055f47749d6508dd74471c55683d6a05c (diff) | |
download | forums-9c61aca1b5ddb517814da2c2fdc771dbe4e2fdf2.tar forums-9c61aca1b5ddb517814da2c2fdc771dbe4e2fdf2.tar.gz forums-9c61aca1b5ddb517814da2c2fdc771dbe4e2fdf2.tar.bz2 forums-9c61aca1b5ddb517814da2c2fdc771dbe4e2fdf2.tar.xz forums-9c61aca1b5ddb517814da2c2fdc771dbe4e2fdf2.zip |
Preparations for possible move of forum_auth fields
git-svn-id: file:///svn/phpbb/trunk@441 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/db/postgres_schema.sql')
-rw-r--r-- | phpBB/db/postgres_schema.sql | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/phpBB/db/postgres_schema.sql b/phpBB/db/postgres_schema.sql index 06e79697af..0adaea7674 100644 --- a/phpBB/db/postgres_schema.sql +++ b/phpBB/db/postgres_schema.sql @@ -195,6 +195,17 @@ CREATE TABLE phpbb_forums ( forum_posts int4 DEFAULT '0' NOT NULL, forum_topics int4 DEFAULT '0' NOT NULL, forum_last_post_id int4 DEFAULT '0' NOT NULL, + auth_view int2 DEFAULT '0' NOT NULL, + auth_read int2 DEFAULT '0' NOT NULL, + auth_post int2 DEFAULT '0' NOT NULL, + auth_reply int2 DEFAULT '0' NOT NULL, + auth_edit int2 DEFAULT '0' NOT NULL, + auth_delete int2 DEFAULT '0' NOT NULL, + auth_announce int2 DEFAULT '0' NOT NULL, + auth_sticky int2 DEFAULT '0' NOT NULL, + auth_votecreate int2 DEFAULT '0' NOT NULL, + auth_vote int2 DEFAULT '0' NOT NULL, + auth_attachments int2 DEFAULT '0' NOT NULL CONSTRAINT phpbb_forums_pkey PRIMARY KEY (forum_id) ); CREATE INDEX cat_id_phpbb_forums_index ON phpbb_forums (cat_id); |