mirror of
https://github.com/YunoHost-Apps/mediawiki_ynh.git
synced 2024-09-03 19:46:05 +02:00
15 lines
613 B
SQL
15 lines
613 B
SQL
-- Removes the inverse_timestamp field from early 1.5 alphas.
|
|
-- This field was used in the olden days as a crutch for sorting
|
|
-- limitations in MySQL 3.x, but is being dropped now as an
|
|
-- unnecessary burden. Serious wikis should be running on 4.x.
|
|
--
|
|
-- Updater added 2005-03-13
|
|
|
|
ALTER TABLE /*$wgDBprefix*/revision
|
|
DROP COLUMN inverse_timestamp,
|
|
DROP INDEX page_timestamp,
|
|
DROP INDEX user_timestamp,
|
|
DROP INDEX usertext_timestamp,
|
|
ADD INDEX page_timestamp (rev_page,rev_timestamp),
|
|
ADD INDEX user_timestamp (rev_user,rev_timestamp),
|
|
ADD INDEX usertext_timestamp (rev_user_text,rev_timestamp);
|