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