X-Git-Url: https://git.ktnx.net/?a=blobdiff_plain;f=app%2Fsrc%2Fmain%2Fres%2Fraw%2Fsql_47.sql;h=0fb4ea9a98fa3aa4b6aa7fc82b29e3b0dd3fbe7e;hb=d5218337e111a377a3661f0ae4a5049edc055705;hp=e754a54f5c523b3e130e3e317209dc0bf6e95ed8;hpb=81277d1635a9b15fef1614a096d94f8772e40735;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 e754a54f..0fb4ea9a 100644 --- a/app/src/main/res/raw/sql_47.sql +++ b/app/src/main/res/raw/sql_47.sql @@ -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