mirror of
https://github.com/YunoHost-Apps/mediawiki_ynh.git
synced 2024-09-03 19:46:05 +02:00
8 lines
188 B
SQL
8 lines
188 B
SQL
--
|
|
-- image-user-index.sql
|
|
--
|
|
-- Add user/timestamp index to current image versions
|
|
--
|
|
|
|
ALTER TABLE /*$wgDBprefix*/image
|
|
ADD INDEX img_usertext_timestamp (img_user_text,img_timestamp);
|