aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install/schemas/mysql_schema.sql
diff options
context:
space:
mode:
authorLudovic Arnaud <ludovic_arnaud@users.sourceforge.net>2003-02-24 23:51:26 +0000
committerLudovic Arnaud <ludovic_arnaud@users.sourceforge.net>2003-02-24 23:51:26 +0000
commit1e5de88c6f888da18b6745975d0aa5711787781d (patch)
tree852bf35f4d9bc43560638533a85c63cf76b6549d /phpBB/install/schemas/mysql_schema.sql
parent8c1004ad85e7240981ba236486af76f5d7890e04 (diff)
downloadforums-1e5de88c6f888da18b6745975d0aa5711787781d.tar
forums-1e5de88c6f888da18b6745975d0aa5711787781d.tar.gz
forums-1e5de88c6f888da18b6745975d0aa5711787781d.tar.bz2
forums-1e5de88c6f888da18b6745975d0aa5711787781d.tar.xz
forums-1e5de88c6f888da18b6745975d0aa5711787781d.zip
Added topic_id field to the log_moderator table
git-svn-id: file:///svn/phpbb/trunk@3521 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/install/schemas/mysql_schema.sql')
-rw-r--r--phpBB/install/schemas/mysql_schema.sql2
1 files changed, 2 insertions, 0 deletions
diff --git a/phpBB/install/schemas/mysql_schema.sql b/phpBB/install/schemas/mysql_schema.sql
index 156606385f..ab67729743 100644
--- a/phpBB/install/schemas/mysql_schema.sql
+++ b/phpBB/install/schemas/mysql_schema.sql
@@ -245,12 +245,14 @@ CREATE TABLE phpbb_log_moderator (
log_id mediumint(5) UNSIGNED NOT NULL DEFAULT '0' auto_increment,
user_id mediumint(8) NOT NULL DEFAULT '0',
forum_id mediumint(8) UNSIGNED NOT NULL DEFAULT '0',
+ topic_id mediumint(8) UNSIGNED NOT NULL DEFAULT '0',
log_ip varchar(40) NOT NULL,
log_time int(11) NOT NULL,
log_operation text,
log_data text,
PRIMARY KEY (log_id),
KEY forum_id (forum_id),
+ KEY topic_id (forum_id),
KEY user_id (user_id)
);