mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-01 14:30:32 +02:00
Various changes, and tests ... marking/tracking is not complete ... tinkering, changing, etc. still to be done ... it's just I've made numerous and various changes to different files so a commit really is due
git-svn-id: file:///svn/phpbb/trunk@3953 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -229,6 +229,19 @@ CREATE TABLE phpbb_forums (
|
||||
KEY forum_last_post_id (forum_last_post_id)
|
||||
);
|
||||
|
||||
|
||||
# --------------------------------------------------------
|
||||
#
|
||||
# Table structure for table 'phpbb_forums_marking'
|
||||
#
|
||||
CREATE TABLE phpbb_forums_marking (
|
||||
user_id mediumint(9) UNSIGNED DEFAULT '0' NOT NULL,
|
||||
forum_id mediumint(9) UNSIGNED DEFAULT '0' NOT NULL,
|
||||
mark_time int(11) DEFAULT '0' NOT NULL,
|
||||
PRIMARY KEY (user_id, forum_id)
|
||||
);
|
||||
|
||||
|
||||
# --------------------------------------------------------
|
||||
#
|
||||
# Table structure for table 'phpbb_forums_watch'
|
||||
@@ -744,7 +757,6 @@ CREATE TABLE phpbb_topics (
|
||||
#
|
||||
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,
|
||||
|
Reference in New Issue
Block a user