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.
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.
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/>.
16 -- migrate from revision 22 to revision 30
20 add future_dates integer,
21 add api_version integer,
22 add show_commodity_by_default boolean default 0,
23 add default_commodity varchar;
26 create table currencies(id integer not null primary key, name varchar not null, position varchar not null, has_gap boolean not null);
29 alter table transaction_accounts add comment varchar;
32 create index idx_transaction_description on transactions(description);
37 and not exists (select 1 from profiles p where p.uuid=options.profile);