mirror of
https://github.com/mautrix/whatsapp.git
synced 2025-03-14 14:15:38 +00:00

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;
|