mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-11-12 09:26:05 +00:00
85181d3aa1
These patches allow Echo update to stay compatible with SQLite. Change-Id: Ie4d0b4ec40bcc504096e87f469be0e96271daec1
8 lines
313 B
SQL
8 lines
313 B
SQL
ALTER TABLE /*_*/echo_email_batch ADD COLUMN eeb_event_hash varchar(32) binary not null default '';
|
|
|
|
DROP INDEX /*i*/echo_email_batch_user_priority_event ON /*_*/echo_email_batch;
|
|
|
|
CREATE INDEX /*i*/echo_email_batch_user_hash_priority ON /*_*/echo_email_batch (eeb_user_id, eeb_event_hash, eeb_event_priority);
|
|
|
|
|