mirror of
https://github.com/YunoHost-Apps/mediawiki_ynh.git
synced 2024-09-03 19:46:05 +02:00
9 lines
159 B
SQL
9 lines
159 B
SQL
--
|
|
-- patch-logging-times-index.sql
|
|
--
|
|
-- Add a very humble index on logging times
|
|
--
|
|
|
|
ALTER TABLE /*$wgDBprefix*/logging
|
|
ADD INDEX times (log_timestamp);
|
|
|