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:
@@ -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
|
||||
-------------------------------------------------------- */
|
||||
|
Reference in New Issue
Block a user