mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-19 06:51:33 +02:00
only small addition for further use...
git-svn-id: file:///svn/phpbb/trunk@4162 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -832,6 +832,7 @@ CREATE TABLE phpbb_topics (
|
||||
topic_last_poster_id INTEGER DEFAULT 0 NOT NULL,
|
||||
topic_last_poster_name VARCHAR(30),
|
||||
topic_last_post_time INTEGER DEFAULT 0 NOT NULL,
|
||||
topic_last_view_time INTEGER DEFAULT 0 NOT NULL,
|
||||
topic_moved_id INTEGER DEFAULT 0 NOT NULL,
|
||||
poll_title VARCHAR(255) DEFAULT '' NOT NULL,
|
||||
poll_start INTEGER DEFAULT 0 NOT NULL,
|
||||
|
@@ -576,6 +576,7 @@ CREATE TABLE phpbb_topics (
|
||||
topic_last_poster_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL,
|
||||
topic_last_poster_name varchar(30),
|
||||
topic_last_post_time int(11) DEFAULT '0' NOT NULL,
|
||||
topic_last_view_time int(11) DEFAULT '0' NOT NULL,
|
||||
topic_moved_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL,
|
||||
poll_title varchar(255) NOT NULL,
|
||||
poll_start int(11) NOT NULL DEFAULT '0',
|
||||
|
@@ -362,7 +362,7 @@ INSERT INTO phpbb_moderator_cache (user_id, forum_id, username) VALUES (2, 2, 'A
|
||||
# MSSQL IDENTITY phpbb_topics ON #
|
||||
|
||||
# -- Demo Topic
|
||||
INSERT INTO phpbb_topics (topic_id, 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_last_post_id, topic_last_poster_id, topic_last_poster_name, topic_last_post_time) VALUES (1, 'Welcome to phpBB 2', 2, 972086460, 0, 0, 0, 2, 0, 0, 1, 'Admin', 1, 2, 'Admin', 972086460);
|
||||
INSERT INTO phpbb_topics (topic_id, 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_last_post_id, topic_last_poster_id, topic_last_poster_name, topic_last_post_time, topic_last_view_time) VALUES (1, 'Welcome to phpBB 2', 2, 972086460, 0, 0, 0, 2, 0, 0, 1, 'Admin', 1, 2, 'Admin', 972086460, 972086460);
|
||||
|
||||
# MSSQL IDENTITY phpbb_topics OFF #
|
||||
|
||||
|
Reference in New Issue
Block a user