1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-05-01 13:17:52 +02:00

Add index to poster_id in posts table

git-svn-id: file:///svn/phpbb/trunk@3614 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Paul S. Owen 2003-03-08 22:36:17 +00:00
parent 7ffb762b04
commit 3d5bdc6c8c

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