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) );