mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-31 14:00:31 +02:00
Associated schema changes
git-svn-id: file:///svn/phpbb/trunk@2537 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -150,6 +150,20 @@ CREATE TABLE phpbb_forums (
|
||||
);
|
||||
|
||||
|
||||
# --------------------------------------------------------
|
||||
#
|
||||
# Table structure for table 'phpbb_forums_watch'
|
||||
#
|
||||
CREATE TABLE phpbb_forums_watch (
|
||||
forum_id smallint(5) UNSIGNED NOT NULL DEFAULT '0',
|
||||
user_id mediumint(8) NOT NULL DEFAULT '0',
|
||||
notify_status tinyint(1) NOT NULL default '0',
|
||||
KEY forum_id (forum_id),
|
||||
KEY user_id (user_id),
|
||||
KEY notify_status (notify_status)
|
||||
);
|
||||
|
||||
|
||||
# --------------------------------------------------------
|
||||
#
|
||||
# Table structure for table 'phpbb_posts'
|
||||
|
Reference in New Issue
Block a user