]> git.ktnx.net Git - mobile-ledger.git/blobdiff - app/src/main/res/raw/sql_47.sql
let SQL revision files control the transaction
[mobile-ledger.git] / app / src / main / res / raw / sql_47.sql
index e754a54f5c523b3e130e3e317209dc0bf6e95ed8..0fb4ea9a98fa3aa4b6aa7fc82b29e3b0dd3fbe7e 100644 (file)
@@ -13,6 +13,8 @@
 -- You should have received a copy of the GNU General Public License
 -- along with MoLe. If not, see <https://www.gnu.org/licenses/>.
 
+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