aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/db/mysql_basic.sql
diff options
context:
space:
mode:
authorJames Atkinson <thefinn@users.sourceforge.net>2001-06-07 07:56:45 +0000
committerJames Atkinson <thefinn@users.sourceforge.net>2001-06-07 07:56:45 +0000
commit1010b488ca951c141aa924d814755d97d1599e9b (patch)
tree36b167ccc4ae0b5df18c9db0a58bbaf7d3da203a /phpBB/db/mysql_basic.sql
parentf49da7909befa8cb1745236bcb6e0b4d1ad87762 (diff)
downloadforums-1010b488ca951c141aa924d814755d97d1599e9b.tar
forums-1010b488ca951c141aa924d814755d97d1599e9b.tar.gz
forums-1010b488ca951c141aa924d814755d97d1599e9b.tar.bz2
forums-1010b488ca951c141aa924d814755d97d1599e9b.tar.xz
forums-1010b488ca951c141aa924d814755d97d1599e9b.zip
Forum level annoucements and sticky topics are done.
Added topic_type field to the topics database in order to handle ordering. Would have used topic_status but that would have messed up the ordering when topics were locked git-svn-id: file:///svn/phpbb/trunk@437 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/db/mysql_basic.sql')
-rw-r--r--phpBB/db/mysql_basic.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/db/mysql_basic.sql b/phpBB/db/mysql_basic.sql
index 1299c3611b..77792733f8 100644
--- a/phpBB/db/mysql_basic.sql
+++ b/phpBB/db/mysql_basic.sql
@@ -38,7 +38,7 @@ INSERT INTO phpbb_auth_forums (forum_id, auth_view, auth_read, auth_post, auth_r
INSERT INTO phpbb_auth_access (group_id, forum_id, auth_view, auth_read, auth_post, auth_reply, auth_edit, auth_delete, auth_announce, auth_sticky, auth_votecreate, auth_vote, auth_mod) VALUES (2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1);
# -- Demo Topic
-INSERT INTO phpbb_topics VALUES(1, 1, 'Demo Topic', 1, NOW(), 0, 0, 0, 0, 1);
+INSERT INTO phpbb_topics VALUES(1, 1, 'Demo Topic', 1, NOW(), 0, 0, 0, 0, 0, 1);
# -- Demo Post
INSERT INTO phpbb_posts VALUES(1, 1, 1, 1, NOW(), '127.0.0.1' , LEFT(MD5('42'), 10));