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

Associated schema changes

git-svn-id: file:///svn/phpbb/trunk@2537 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Paul S. Owen
2002-04-20 23:43:46 +00:00
parent fa3d0694a8
commit 9649ececed
7 changed files with 39 additions and 3 deletions

View File

@@ -135,6 +135,18 @@ CREATE INDEX forums_order_phpbb_forums_index ON phpbb_forums (forum_order);
CREATE INDEX forum_last_post_id_phpbb_forums_index ON phpbb_forums (forum_last_post_id);
/* --------------------------------------------------------
Table structure for table phpbb_forums_watch
-------------------------------------------------------- */
CREATE TABLE phpbb_forums_watch (
forum_id int4,
user_id int4,
notify_status int2 NOT NULL default '0'
);
CREATE INDEX forum_id_phpbb_forums_watch_index ON phpbb_forums_watch (forum_id);
CREATE INDEX user_id_phpbb_forums_watch_index ON phpbb_forums_watch (user_id);
/* --------------------------------------------------------
Table structure for table phpbb_forum_prune
-------------------------------------------------------- */