mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2026-05-31 00:15:01 +00:00
core: enable removal of unused connections in migration (#6399)
This commit is contained in:
@@ -16,7 +16,7 @@ CREATE TABLE connections_sync(
|
||||
last_sync_ts TIMESTAMPTZ
|
||||
);
|
||||
|
||||
INSERT INTO connections_sync (connections_sync_id, should_sync, last_sync_ts) VALUES (1,0,NULL);
|
||||
INSERT INTO connections_sync (connections_sync_id, should_sync, last_sync_ts) VALUES (1, 1, NULL);
|
||||
|]
|
||||
|
||||
down_m20251007_connections_sync :: Text
|
||||
|
||||
@@ -15,7 +15,7 @@ CREATE TABLE connections_sync(
|
||||
last_sync_ts TEXT
|
||||
);
|
||||
|
||||
INSERT INTO connections_sync (connections_sync_id, should_sync, last_sync_ts) VALUES (1,0,NULL);
|
||||
INSERT INTO connections_sync (connections_sync_id, should_sync, last_sync_ts) VALUES (1, 1, NULL);
|
||||
|]
|
||||
|
||||
down_m20251007_connections_sync :: Query
|
||||
|
||||
Reference in New Issue
Block a user