2
0
mirror of https://github.com/status-im/status-go.git synced 2025-01-18 18:55:47 +00:00
status-go/protocol/migrations/sqlite/1619099821_add_last_synced_field.up.sql
2021-05-21 07:22:58 +02:00

5 lines
226 B
SQL

ALTER TABLE chats ADD COLUMN synced_to INTEGER DEFAULT 0;
ALTER TABLE chats ADD COLUMN synced_from INTEGER DEFAULT 0;
ALTER TABLE user_messages ADD COLUMN gap_from INTEGER;
ALTER TABLE user_messages ADD COLUMN gap_to INTEGER;