mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-11-12 09:26:05 +00:00
052a4818f6
SQLite requires unique index names across the full database. A previous patch I9b6468221ba6fe501b15c563f3301694262eec65 renamed the index in echo.sql but forgot to apply the same change to existing databases. This resolves that mistake. Change-Id: Ibb629149afd9f4ca55cac613124fce42500aa8f9
3 lines
167 B
SQL
3 lines
167 B
SQL
CREATE INDEX /*i*/echo_user_timestamp ON /*_*/echo_notification (notification_user, notification_timestamp);
|
|
DROP INDEX /*i*/user_timestamp ON /*_*/echo_notification;
|