From c56495ed42b486889f044afb114523db031cbb28 Mon Sep 17 00:00:00 2001 From: Matiss Janis Aboltins Date: Thu, 1 Feb 2024 13:56:32 +0000 Subject: [PATCH] Delete flaky sql query --- .../migrations/1704572023730_add_account_sync_source.sql | 6 ------ 1 file changed, 6 deletions(-) diff --git a/packages/loot-core/migrations/1704572023730_add_account_sync_source.sql b/packages/loot-core/migrations/1704572023730_add_account_sync_source.sql index 3aae8da909e..7af2400895a 100644 --- a/packages/loot-core/migrations/1704572023730_add_account_sync_source.sql +++ b/packages/loot-core/migrations/1704572023730_add_account_sync_source.sql @@ -2,10 +2,4 @@ BEGIN TRANSACTION; ALTER TABLE accounts ADD COLUMN account_sync_source TEXT; -UPDATE accounts SET - account_sync_source = CASE - WHEN account_id THEN 'goCardless' - ELSE NULL - END; - COMMIT;