X-Git-Url: https://git.ktnx.net/?a=blobdiff_plain;ds=sidebyside;f=app%2Fsrc%2Fmain%2Fres%2Fraw%2Fdb_64.sql;fp=app%2Fsrc%2Fmain%2Fres%2Fraw%2Fdb_64.sql;h=e463e94bbcad636fd296fc680a17d35ec96fb038;hb=1595c5ff0973f34eca8b9830589b2c982caf26c7;hp=0000000000000000000000000000000000000000;hpb=4a44ce88b61f00c2710877cf26818db2728b5d91;p=mobile-ledger.git diff --git a/app/src/main/res/raw/db_64.sql b/app/src/main/res/raw/db_64.sql new file mode 100644 index 00000000..e463e94b --- /dev/null +++ b/app/src/main/res/raw/db_64.sql @@ -0,0 +1,62 @@ +-- 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 +-- 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 . + +-- migrate from revision 63 to revision 64 + +-- pragmas need to be outside of transaction control +-- foreign_keys is needed so that foreign key constraints are redirected + +commit transaction; +pragma foreign_keys = off; + +begin transaction; + +-- profiles +CREATE TABLE profiles_new ( +id INTEGER NOT NULL PRIMARY KEY, +uuid TEXT NOT NULL, +name TEXT NOT NULL, +url TEXT NOT NULL, +use_authentication INTEGER NOT NULL, +auth_user TEXT, +auth_password TEXT, +order_no INTEGER NOT NULL, +permit_posting INTEGER NOT NULL, +theme INTEGER NOT NULL DEFAULT -1, +preferred_accounts_filter TEXT, +future_dates INTEGER NOT NULL, +api_version INTEGER NOT NULL, +show_commodity_by_default INTEGER NOT NULL, +default_commodity TEXT, +show_comments_by_default INTEGER NOT NULL DEFAULT 1, +detected_version_pre_1_19 INTEGER NOT NULL, +detected_version_major INTEGER NOT NULL, +detected_version_minor INTEGER NOT NULL); + +insert into profiles_new( + uuid, name, url, use_authentication, auth_user, auth_password, + order_no, permit_posting, theme, preferred_accounts_filter, future_dates, api_version, + show_commodity_by_default, default_commodity, show_comments_by_default, detected_version_pre_1_19, + detected_version_major, detected_version_minor) +select coalesce(deprecated_uuid, random()), name, url, use_authentication, auth_user, auth_password, + order_no, permit_posting, theme, preferred_accounts_filter, future_dates, api_version, + show_commodity_by_default, default_commodity, show_comments_by_default, detected_version_pre_1_19, + detected_version_major, detected_version_minor +from profiles; + +drop table profiles; +alter table profiles_new rename to profiles; + +create unique index profiles_uuid_idx on profiles(uuid); \ No newline at end of file