mirror of
https://github.com/YunoHost-Apps/mediawiki_ynh.git
synced 2024-09-03 19:46:05 +02:00
5 lines
202 B
SQL
5 lines
202 B
SQL
-- Adding index to sort by uploader
|
|
ALTER TABLE /*$wgDBprefix*/filearchive
|
|
ADD INDEX fa_user_timestamp (fa_user_text,fa_timestamp),
|
|
-- Remove useless, incomplete index
|
|
DROP INDEX fa_deleted_user;
|