2
0
mirror of https://github.com/status-im/status-go.git synced 2025-02-25 13:16:15 +00:00
status-go/protocol/migrations/sqlite/1619099821_add_last_synced_field.up.sql

5 lines
226 B
MySQL
Raw Normal View History

2021-03-25 16:15:22 +01:00
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;