mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
Topic notification ... initial stuff
git-svn-id: file:///svn/phpbb/trunk@863 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
a34d5d2abb
commit
a23e75b498
1 changed files with 2 additions and 2 deletions
|
@ -429,8 +429,8 @@ CREATE TABLE phpbb_topics (
|
||||||
#
|
#
|
||||||
DROP TABLE IF EXISTS phpbb_topics_watch;
|
DROP TABLE IF EXISTS phpbb_topics_watch;
|
||||||
CREATE TABLE phpbb_topics_watch (
|
CREATE TABLE phpbb_topics_watch (
|
||||||
topic_id int(11),
|
topic_id int(11) NOT NULL DEFAULT '0',
|
||||||
user_id int(11),
|
user_id int(11) NOT NULL DEFAULT '0',
|
||||||
notify_status tinyint(1) NOT NULL default '0',
|
notify_status tinyint(1) NOT NULL default '0',
|
||||||
PRIMARY KEY (topic_id),
|
PRIMARY KEY (topic_id),
|
||||||
KEY user_id (user_id)
|
KEY user_id (user_id)
|
||||||
|
|
Loading…
Add table
Reference in a new issue