1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-30 21:40:43 +02:00

updated schema files. Also added a new load setting and some missing keys.

git-svn-id: file:///svn/phpbb/trunk@6250 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Meik Sievertsen
2006-08-07 13:22:42 +00:00
parent 644c4bd046
commit 19db55e8f3
7 changed files with 182 additions and 100 deletions

View File

@@ -181,6 +181,18 @@ ALTER TABLE [phpbb_banlist] WITH NOCHECK ADD
) ON [PRIMARY]
GO
CREATE INDEX [ban_end] ON [phpbb_banlist]([ban_end]) ON [PRIMARY]
GO
CREATE INDEX [ban_user] ON [phpbb_banlist]([ban_userid], [ban_exclude]) ON [PRIMARY]
GO
CREATE INDEX [ban_email] ON [phpbb_banlist]([ban_email], [ban_exclude]) ON [PRIMARY]
GO
CREATE INDEX [ban_ip] ON [phpbb_banlist]([ban_ip], [ban_exclude]) ON [PRIMARY]
GO
/*
Table: 'phpbb_bbcodes'
@@ -291,6 +303,9 @@ ALTER TABLE [phpbb_confirm] WITH NOCHECK ADD
) ON [PRIMARY]
GO
CREATE INDEX [confirm_type] ON [phpbb_confirm]([confirm_type]) ON [PRIMARY]
GO
/*
Table: 'phpbb_disallow'
@@ -869,6 +884,9 @@ ALTER TABLE [phpbb_privmsgs_rules] WITH NOCHECK ADD
) ON [PRIMARY]
GO
CREATE INDEX [user_id] ON [phpbb_privmsgs_rules]([user_id]) ON [PRIMARY]
GO
/*
Table: 'phpbb_privmsgs_to'
@@ -890,6 +908,9 @@ GO
CREATE INDEX [msg_id] ON [phpbb_privmsgs_to]([msg_id]) ON [PRIMARY]
GO
CREATE INDEX [author_id] ON [phpbb_privmsgs_to]([author_id]) ON [PRIMARY]
GO
CREATE INDEX [usr_flder_id] ON [phpbb_privmsgs_to]([user_id], [folder_id]) ON [PRIMARY]
GO
@@ -1105,6 +1126,9 @@ GO
CREATE INDEX [word_id] ON [phpbb_search_wordmatch]([word_id]) ON [PRIMARY]
GO
CREATE INDEX [post_id] ON [phpbb_search_wordmatch]([post_id]) ON [PRIMARY]
GO
/*
Table: 'phpbb_sessions'
@@ -1478,6 +1502,9 @@ GO
CREATE INDEX [last_post_time] ON [phpbb_topics]([topic_last_post_time]) ON [PRIMARY]
GO
CREATE INDEX [fid_time_moved] ON [phpbb_topics]([forum_id], [topic_last_post_time], [topic_moved_id]) ON [PRIMARY]
GO
/*
Table: 'phpbb_topics_track'