From a23e75b498c5ae12b23afa854b517051399e6f40 Mon Sep 17 00:00:00 2001 From: "Paul S. Owen" Date: Tue, 14 Aug 2001 00:30:44 +0000 Subject: [PATCH] Topic notification ... initial stuff git-svn-id: file:///svn/phpbb/trunk@863 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/db/mysql_schema.sql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/phpBB/db/mysql_schema.sql b/phpBB/db/mysql_schema.sql index ec1cb6107b..486e385092 100644 --- a/phpBB/db/mysql_schema.sql +++ b/phpBB/db/mysql_schema.sql @@ -429,8 +429,8 @@ CREATE TABLE phpbb_topics ( # DROP TABLE IF EXISTS phpbb_topics_watch; CREATE TABLE phpbb_topics_watch ( - topic_id int(11), - user_id int(11), + topic_id int(11) NOT NULL DEFAULT '0', + user_id int(11) NOT NULL DEFAULT '0', notify_status tinyint(1) NOT NULL default '0', PRIMARY KEY (topic_id), KEY user_id (user_id)