diff options
author | Nathaniel Guse <nathaniel.guse@gmail.com> | 2013-02-23 15:08:28 -0600 |
---|---|---|
committer | Nathaniel Guse <nathaniel.guse@gmail.com> | 2013-02-23 15:08:28 -0600 |
commit | c31935abda37b1d8f4f7ebbce33012a95e7b4b69 (patch) | |
tree | a17f88eea68b59675b872a07c88053483492f211 /phpBB/install | |
parent | 213bc09743a0d326e2379f3f12bfd549499031b4 (diff) | |
download | forums-c31935abda37b1d8f4f7ebbce33012a95e7b4b69.tar forums-c31935abda37b1d8f4f7ebbce33012a95e7b4b69.tar.gz forums-c31935abda37b1d8f4f7ebbce33012a95e7b4b69.tar.bz2 forums-c31935abda37b1d8f4f7ebbce33012a95e7b4b69.tar.xz forums-c31935abda37b1d8f4f7ebbce33012a95e7b4b69.zip |
[feature/migrations] Revert unrelated change to schema_data.sql
PHBB3-9737
Diffstat (limited to 'phpBB/install')
-rw-r--r-- | phpBB/install/schemas/schema_data.sql | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/phpBB/install/schemas/schema_data.sql b/phpBB/install/schemas/schema_data.sql index 4e4d70ced3..7c1a7d40f5 100644 --- a/phpBB/install/schemas/schema_data.sql +++ b/phpBB/install/schemas/schema_data.sql @@ -611,6 +611,7 @@ INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, # NEW MEMBERS on the queue INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (7, 2, 0, 24, 0); + # -- Demo Topic INSERT INTO phpbb_topics (topic_title, topic_poster, topic_time, topic_views, topic_replies, topic_replies_real, forum_id, topic_status, topic_type, topic_first_post_id, topic_first_poster_name, topic_first_poster_colour, topic_last_post_id, topic_last_poster_id, topic_last_poster_name, topic_last_poster_colour, topic_last_post_subject, topic_last_post_time, topic_last_view_time, poll_title) VALUES ('{L_TOPICS_TOPIC_TITLE}', 2, 972086460, 0, 0, 0, 2, 0, 0, 1, 'Admin', 'AA0000', 1, 2, 'Admin', 'AA0000', '{L_TOPICS_TOPIC_TITLE}', 972086460, 972086460, ''); |