aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/db/mysql_schema.sql
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/db/mysql_schema.sql')
-rw-r--r--phpBB/db/mysql_schema.sql14
1 files changed, 14 insertions, 0 deletions
diff --git a/phpBB/db/mysql_schema.sql b/phpBB/db/mysql_schema.sql
index f59e5200af..ec1cb6107b 100644
--- a/phpBB/db/mysql_schema.sql
+++ b/phpBB/db/mysql_schema.sql
@@ -425,6 +425,20 @@ CREATE TABLE phpbb_topics (
# --------------------------------------------------------
#
+# Table structure for table 'phpbb_topics_watch'
+#
+DROP TABLE IF EXISTS phpbb_topics_watch;
+CREATE TABLE phpbb_topics_watch (
+ topic_id int(11),
+ user_id int(11),
+ notify_status tinyint(1) NOT NULL default '0',
+ PRIMARY KEY (topic_id),
+ KEY user_id (user_id)
+);
+
+
+# --------------------------------------------------------
+#
# Table structure for table 'phpbb_users'
#
DROP TABLE IF EXISTS phpbb_users;