]> git.ktnx.net Git - mobile-ledger-staging.git/blob - app/src/main/res/raw/sql_34.sql
rework transaction date handling
[mobile-ledger-staging.git] / app / src / main / res / raw / sql_34.sql
1 -- Copyright © 2020 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 alter table transactions add year integer not null default 0;
16 alter table transactions add month integer not null default 0;
17 alter table transactions add day integer not null default 0;
18 alter table transactions add tmp_md varchar;
19 update transactions set year= cast(substr(date,  1,instr(date,  '/')-1) as integer);
20 update transactions set tmp_md=    substr(date,    instr(date,  '/')+1);
21 update transactions set month=cast(substr(tmp_md,1,instr(tmp_md,'/')-1) as integer);
22 update transactions set day=  cast(substr(tmp_md,  instr(tmp_md,'/')+1) as integer);
23 -- alter table transactions drop date
24 create table transactions_2(profile varchar not null, id integer not null, data_hash varchar not null, year integer not null, month integer not null, day integer not null, description varchar not null, comment varchar, keep boolean not null default 0);
25 insert into transactions_2(profile, id, data_hash, year, month, day, description, comment, keep) select profile, id, data_hash, year, month, day, description, comment, keep from transactions;
26 drop table transactions;
27 alter table transactions_2 rename to transactions;