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;