From b9b4e569e4f3988435533445e32282ae5ca69577 Mon Sep 17 00:00:00 2001 From: Damyan Ivanov Date: Sun, 20 Sep 2020 22:41:46 +0300 Subject: [PATCH] remove legacy foreigh key vialotions in transaction_accounts --- app/src/main/res/raw/sql_40.sql | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 app/src/main/res/raw/sql_40.sql diff --git a/app/src/main/res/raw/sql_40.sql b/app/src/main/res/raw/sql_40.sql new file mode 100644 index 00000000..18a350a0 --- /dev/null +++ b/app/src/main/res/raw/sql_40.sql @@ -0,0 +1,17 @@ +-- Copyright © 2020 Damyan Ivanov. +-- This file is part of MoLe. +-- MoLe is free software: you can distribute it and/or modify it +-- under the term of the GNU General Public License as published by +-- the Free Software Foundation, either version 3 of the License, or +-- (at your opinion), any later version. +-- +-- MoLe is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License terms for details. +-- +-- You should have received a copy of the GNU General Public License +-- along with MoLe. If not, see . +pragma foreign_keys=off; +delete from transaction_accounts where not exists (select 1 from accounts a where a.profile=transaction_accounts.profile and a.name=transaction_accounts.account_name); +delete from transaction_accounts where not exists (select 1 from transactions t where t.profile=transaction_accounts.profile and t.id=transaction_accounts.transaction_id); \ No newline at end of file -- 2.39.2