core: enable removal of unused connections in migration (#6399)

This commit is contained in:
Evgeny
2025-10-23 08:12:59 +01:00
committed by GitHub
parent 239e6d114d
commit 505fde30f8
2 changed files with 2 additions and 2 deletions
@@ -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