mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-30 21:40:43 +02:00
Global announcements ... sort of work ... well they seem to, need to look at possbility of splitting topics table in two
git-svn-id: file:///svn/phpbb/trunk@4167 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -585,10 +585,8 @@ CREATE TABLE phpbb_topics (
|
||||
poll_last_vote int(11),
|
||||
PRIMARY KEY (topic_id),
|
||||
KEY forum_id (forum_id),
|
||||
KEY topic_moved_id (topic_moved_id),
|
||||
KEY forum_id_type (forum_id, topic_type),
|
||||
KEY topic_last_post_time (topic_last_post_time),
|
||||
KEY poll_last_vote (poll_last_vote),
|
||||
KEY topic_type (topic_type)
|
||||
);
|
||||
|
||||
# Table: 'phpbb_topic_marking'
|
||||
|
@@ -157,7 +157,6 @@ INSERT INTO phpbb_auth_options (auth_option, is_local) VALUES ('f_delete', 1);
|
||||
INSERT INTO phpbb_auth_options (auth_option, is_local) VALUES ('f_poll', 1);
|
||||
INSERT INTO phpbb_auth_options (auth_option, is_local) VALUES ('f_vote', 1);
|
||||
INSERT INTO phpbb_auth_options (auth_option, is_local) VALUES ('f_votechg', 1);
|
||||
INSERT INTO phpbb_auth_options (auth_option, is_local) VALUES ('f_global', 1);
|
||||
INSERT INTO phpbb_auth_options (auth_option, is_local) VALUES ('f_announce', 1);
|
||||
INSERT INTO phpbb_auth_options (auth_option, is_local) VALUES ('f_sticky', 1);
|
||||
INSERT INTO phpbb_auth_options (auth_option, is_local) VALUES ('f_attach', 1);
|
||||
|
Reference in New Issue
Block a user