* Add an index on (rc_user_text,rc_timestamp) on the recentchanges table. This will make CheckUser.php and the new retroactive autoblock functionality faster.
7 lines
No EOL
173 B
SQL
7 lines
No EOL
173 B
SQL
-- Add an index to recentchanges on rc_user_text
|
|
--
|
|
-- Added 2006-11-08
|
|
--
|
|
|
|
ALTER TABLE /*$wgDBprefix*/recentchanges
|
|
ADD INDEX rc_user_text(rc_user_text, rc_timestamp); |