From 3d5bdc6c8c6c552743ea602bc20316b20b11d765 Mon Sep 17 00:00:00 2001 From: "Paul S. Owen" Date: Sat, 8 Mar 2003 22:36:17 +0000 Subject: [PATCH] Add index to poster_id in posts table git-svn-id: file:///svn/phpbb/trunk@3614 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/install/schemas/mysql_schema.sql | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/phpBB/install/schemas/mysql_schema.sql b/phpBB/install/schemas/mysql_schema.sql index 427274fa7e..d997a84b00 100644 --- a/phpBB/install/schemas/mysql_schema.sql +++ b/phpBB/install/schemas/mysql_schema.sql @@ -349,7 +349,8 @@ CREATE TABLE phpbb_posts ( post_edit_count smallint(5) UNSIGNED DEFAULT '0' NOT NULL, PRIMARY KEY (post_id), KEY topic_id (topic_id), - KEY poster_ip (poster_ip) + KEY poster_ip (poster_ip), + KEY poster_id (poster_id) );