]> git.ktnx.net Git - mobile-ledger.git/blob - app/src/main/res/raw/db_22_30.sql
more pronounced day/month delimiters in the transaction list
[mobile-ledger.git] / app / src / main / res / raw / db_22_30.sql
1 -- Copyright © 2021 Damyan Ivanov.
2 -- This file is part of MoLe.
3 -- MoLe is free software: you can distribute it and/or modify it
4 -- under the term of the GNU General Public License as published by
5 -- the Free Software Foundation, either version 3 of the License, or
6 -- (at your opinion), any later version.
7 --
8 -- MoLe is distributed in the hope that it will be useful,
9 -- but WITHOUT ANY WARRANTY; without even the implied warranty of
10 -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 -- GNU General Public License terms for details.
12 --
13 -- You should have received a copy of the GNU General Public License
14 -- along with MoLe. If not, see <https://www.gnu.org/licenses/>.
15
16 -- migrate from revision 22 to revision 30
17
18 -- 23, 24, 27, 28
19 alter table profiles
20 add future_dates integer,
21 add api_version integer,
22 add show_commodity_by_default boolean default 0,
23 add default_commodity varchar;
24
25 -- 25
26 create table currencies(id integer not null primary key, name varchar not null, position varchar not null, has_gap boolean not null);
27
28 -- 26
29 alter table transaction_accounts add comment varchar;
30
31 -- 29
32 create index idx_transaction_description on transactions(description);
33
34 -- 30
35 delete from options
36 where profile <> '-'
37   and not exists (select 1 from profiles p where p.uuid=options.profile);