No point in fetching the result in Database::unlock() if we're not using it anyway.
[lhc/web/wiklou.git] / maintenance / archives / patch-filearhive-user-index.sql
1 -- Adding index to sort by uploader
2 ALTER TABLE /*$wgDBprefix*/filearchive
3 ADD INDEX fa_user_timestamp (fa_user_text,fa_timestamp),
4 -- Remove useless, incomplete index
5 DROP INDEX fa_deleted_user;