aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorPaul S. Owen <psotfx@users.sourceforge.net>2001-08-14 00:30:44 +0000
committerPaul S. Owen <psotfx@users.sourceforge.net>2001-08-14 00:30:44 +0000
commita23e75b498c5ae12b23afa854b517051399e6f40 (patch)
treea16bd4ccbd792b6d767f2cf805dc98a956e24524 /phpBB
parenta34d5d2abb30ec692038f2875b78443507c70131 (diff)
downloadforums-a23e75b498c5ae12b23afa854b517051399e6f40.tar
forums-a23e75b498c5ae12b23afa854b517051399e6f40.tar.gz
forums-a23e75b498c5ae12b23afa854b517051399e6f40.tar.bz2
forums-a23e75b498c5ae12b23afa854b517051399e6f40.tar.xz
forums-a23e75b498c5ae12b23afa854b517051399e6f40.zip
Topic notification ... initial stuff
git-svn-id: file:///svn/phpbb/trunk@863 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/db/mysql_schema.sql4
1 files 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)