mirror of
https://github.com/mautrix/whatsapp.git
synced 2026-05-16 10:33:14 -04:00
4 lines
330 B
MySQL
4 lines
330 B
MySQL
|
|
-- v6 (compatible with v3+): Store timestamp for which login a conversation was synced with
|
||
|
|
ALTER TABLE whatsapp_history_sync_conversation ADD COLUMN synced_login_ts BIGINT;
|
||
|
|
UPDATE whatsapp_history_sync_conversation SET synced_login_ts = 0 WHERE bridged = true;
|
||
|
|
ALTER TABLE whatsapp_history_sync_conversation DROP COLUMN bridged;
|