mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-27 21:58:52 +00:00
Wrong name for poll end caps in style imagesets, added poll_max_options to topic table ... ignore two new marking tables for time being ... code utilising one or both is yet to be committed and one or other may vanish.
git-svn-id: file:///svn/phpbb/trunk@3918 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
3bdde3d41f
commit
6fc1cb6b49
2 changed files with 17 additions and 16 deletions
File diff suppressed because one or more lines are too long
|
@ -301,20 +301,6 @@ CREATE TABLE phpbb_lang (
|
|||
);
|
||||
|
||||
|
||||
# --------------------------------------------------------
|
||||
#
|
||||
# Table structure for table 'phpbb_lastread'
|
||||
#
|
||||
CREATE TABLE phpbb_lastread (
|
||||
user_id mediumint(9) NOT NULL default '0',
|
||||
lastread_type tinyint(4) NOT NULL default '0',
|
||||
forum_id smallint(6) NOT NULL default '0',
|
||||
topic_id mediumint(9) NOT NULL default '0',
|
||||
lastread_time int(4) NOT NULL default '0',
|
||||
PRIMARY KEY (user_id,topic_id)
|
||||
);
|
||||
|
||||
|
||||
# --------------------------------------------------------
|
||||
#
|
||||
# Table structure for table 'phpbb_log_moderator'
|
||||
|
@ -740,7 +726,8 @@ CREATE TABLE phpbb_topics (
|
|||
topic_moved_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL,
|
||||
poll_title varchar(255) NOT NULL,
|
||||
poll_start int(11) NOT NULL DEFAULT '0',
|
||||
poll_length int(11) NOT NULL DEFAULT '0',
|
||||
poll_length int(11) NOT NULL DEFAULT '0',
|
||||
poll_max_options tinyint(4) UNSIGNED NOT NULL DEFAULT '1',
|
||||
poll_last_vote int(11),
|
||||
PRIMARY KEY (topic_id),
|
||||
KEY forum_id (forum_id),
|
||||
|
@ -750,6 +737,20 @@ CREATE TABLE phpbb_topics (
|
|||
);
|
||||
|
||||
|
||||
# --------------------------------------------------------
|
||||
#
|
||||
# Table structure for table 'phpbb_topic_marking'
|
||||
#
|
||||
CREATE TABLE phpbb_topics_marking (
|
||||
user_id mediumint(9) UNSIGNED DEFAULT '0' NOT NULL,
|
||||
forum_id mediumint(9) UNSIGNED DEFAULT '0' NOT NULL,
|
||||
topic_id mediumint(9) UNSIGNED DEFAULT '0' NOT NULL,
|
||||
mark_type tinyint(4) DEFAULT '0' NOT NULL,
|
||||
mark_time int(11) DEFAULT '0' NOT NULL,
|
||||
PRIMARY KEY (user_id, topic_id)
|
||||
);
|
||||
|
||||
|
||||
# --------------------------------------------------------
|
||||
#
|
||||
# Table structure for table 'phpbb_topics_watch'
|
||||
|
|
Loading…
Add table
Reference in a new issue