1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-06 16:56:44 +02:00

Topic notification ... initial stuff

git-svn-id: file:///svn/phpbb/trunk@862 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Paul S. Owen
2001-08-14 00:29:39 +00:00
parent 538b793e65
commit a34d5d2abb
9 changed files with 283 additions and 20 deletions

View File

@@ -423,6 +423,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'