Followup r113109, forward port the rest of r25267 for Bug 10788 - Filter page histori...
[lhc/web/wiklou.git] / maintenance / sqlite / archives / patch-revision-user-page-index.sql
1 -- New index on revision table to allow searches for all edits by a given user
2 -- to a given page. Added 2007-08-28
3
4 ALTER TABLE /*$wgDBprefix*/revision
5 ADD INDEX page_user_timestamp (rev_page,rev_user,rev_timestamp);