X-Git-Url: https://git.ktnx.net/?a=blobdiff_plain;f=app%2Fsrc%2Fmain%2Fres%2Fraw%2Fsql_47.sql;h=0fb4ea9a98fa3aa4b6aa7fc82b29e3b0dd3fbe7e;hb=6ca5983a69b60841844084e4318ba0139ce144b7;hp=b78934867a26c04b02482a8630c5ebb5396dba71;hpb=a89accc8449a3a7ed5215b750d83f1a65654ca0c;p=mobile-ledger.git diff --git a/app/src/main/res/raw/sql_47.sql b/app/src/main/res/raw/sql_47.sql index b7893486..0fb4ea9a 100644 --- a/app/src/main/res/raw/sql_47.sql +++ b/app/src/main/res/raw/sql_47.sql @@ -1,4 +1,4 @@ --- Copyright © 2020 Damyan Ivanov. +-- Copyright © 2021 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 @@ -13,6 +13,8 @@ -- You should have received a copy of the GNU General Public License -- along with MoLe. If not, see . +BEGIN TRANSACTION; + drop table pattern_accounts; drop table patterns; @@ -20,3 +22,5 @@ create table patterns(id INTEGER not null primary key, name TEXT not null, posit create unique index un_patterns_id on patterns(id); create table pattern_accounts(id INTEGER not null primary key, pattern_id INTEGER not null, position INTEGER not null, acc TEXT, acc_match_group INTEGER, currency INTEGER, currency_match_group INTEGER, amount decimal, amount_match_group INTEGER, comment TEXT, comment_match_group INTEGER, constraint fk_pattern_account_pattern foreign key(pattern_id) references patterns(id), constraint fk_pattern_account_currency foreign key(currency) references currencies(id)); create unique index un_pattern_accounts on pattern_accounts(id); + +COMMIT TRANSACTION; \ No newline at end of file