mirror of
https://github.com/phpbb/phpbb.git
synced 2025-10-26 21:21:32 +01:00
Associated schema changes
git-svn-id: file:///svn/phpbb/trunk@2537 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -88,6 +88,13 @@ CREATE TABLE [phpbb_forums] (
|
||||
) ON [PRIMARY]
|
||||
GO
|
||||
|
||||
CREATE TABLE [phpbb_forums_watch] (
|
||||
[forum_id] [int] NOT NULL ,
|
||||
[user_id] [int] NOT NULL ,
|
||||
[notify_status] [smallint] NOT NULL
|
||||
) ON [PRIMARY]
|
||||
GO
|
||||
|
||||
CREATE TABLE [phpbb_groups] (
|
||||
[group_id] [int] NOT NULL ,
|
||||
[group_type] [smallint] NULL ,
|
||||
@@ -604,6 +611,9 @@ GO
|
||||
CREATE INDEX [IX_phpbb_forums] ON [phpbb_forums]([cat_id], [forum_order], [forum_last_post_id]) ON [PRIMARY]
|
||||
GO
|
||||
|
||||
CREATE INDEX [IX_phpbb_forums_watch] ON [phpbb_forums_watch]([forum_id], [user_id]) ON [PRIMARY]
|
||||
GO
|
||||
|
||||
CREATE INDEX [IX_phpbb_groups] ON [phpbb_groups]([group_single_user]) ON [PRIMARY]
|
||||
GO
|
||||
|
||||
|
||||
Reference in New Issue
Block a user