mirror of
https://github.com/YunoHost-Apps/mediawiki_ynh.git
synced 2024-09-03 19:46:05 +02:00
9 lines
216 B
SQL
9 lines
216 B
SQL
--
|
|
-- patch-rc-newindex.sql
|
|
-- Adds an index to recentchanges to optimize Special:Newpages
|
|
-- 2004-01-25
|
|
--
|
|
|
|
ALTER TABLE /*$wgDBprefix*/recentchanges
|
|
ADD INDEX new_name_timestamp(rc_new,rc_namespace,rc_timestamp);
|
|
|