mirror of
https://github.com/tulir/mautrix-whatsapp
synced 2024-11-05 14:29:09 +01:00
a948ea0146
See d578d1a610
Database upgrades from before v0.4.0 were squashed, users must update
to at least v0.4.0 before updating beyond this commit.
5 lines
211 B
SQL
5 lines
211 B
SQL
-- v45: Add dispatch time to backfill queue
|
|
|
|
ALTER TABLE backfill_queue ADD COLUMN dispatch_time TIMESTAMP;
|
|
UPDATE backfill_queue SET dispatch_time=completed_at;
|
|
ALTER TABLE backfill_queue DROP COLUMN time_end;
|