summaryrefslogtreecommitdiff
path: root/www/wiki/maintenance/archives/patch-rename-ar_usertext_timestamp.sql
diff options
context:
space:
mode:
Diffstat (limited to 'www/wiki/maintenance/archives/patch-rename-ar_usertext_timestamp.sql')
-rw-r--r--www/wiki/maintenance/archives/patch-rename-ar_usertext_timestamp.sql7
1 files changed, 7 insertions, 0 deletions
diff --git a/www/wiki/maintenance/archives/patch-rename-ar_usertext_timestamp.sql b/www/wiki/maintenance/archives/patch-rename-ar_usertext_timestamp.sql
new file mode 100644
index 00000000..658c179a
--- /dev/null
+++ b/www/wiki/maintenance/archives/patch-rename-ar_usertext_timestamp.sql
@@ -0,0 +1,7 @@
+-- Rename the archive.ar_usertext_timestamp index to usertext_timestamp.
+-- This is for MySQL only and is only necessary on wikis freshly installed on
+-- 1.28.0 when bug T154872 was present. The patch will probably be removed in
+-- 1.29 since we plan on renaming the index properly to ar_usertext_timestamp.
+ALTER TABLE /*$wgDBprefix*/archive
+ DROP INDEX ar_usertext_timestamp,
+ ADD INDEX usertext_timestamp (ar_user_text,ar_timestamp);