X-Git-Url: https://git.ktnx.net/?p=mobile-ledger.git;a=blobdiff_plain;f=app%2Fsrc%2Fmain%2Fres%2Fraw%2Fcreate_db.sql;h=9a0ccbd6318a01de1c3bf1a7a444090d42efe7f5;hp=a4a42eafc8fe418e37f7e4658375a8897a48cb54;hb=b2f4ea6b9b96cda1c04afc54c152049025d99d80;hpb=1c7d5db534b9c31c30f5a98074b0bcaeb1c0b4a9 diff --git a/app/src/main/res/raw/create_db.sql b/app/src/main/res/raw/create_db.sql index a4a42eaf..9a0ccbd6 100644 --- a/app/src/main/res/raw/create_db.sql +++ b/app/src/main/res/raw/create_db.sql @@ -37,12 +37,21 @@ create table profiles( primary key(uuid)); create table accounts(profile varchar not null, name varchar not null, name_upper varchar not null, level integer not null, parent_name varchar, expanded integer not null default 1, amounts_expanded integer not null default 0, generation integer not null default 0, primary key(profile, name)); -create table options(profile varchar not null, name varchar not null, value varchar); -create unique index un_options on options(profile,name); -create table account_values(profile varchar not null, account varchar not null, currency varchar not null default '', value decimal not null, generation integer default 0 ); -create unique index un_account_values on account_values(profile,account,currency); -create table description_history(description varchar not null primary key, description_upper varchar, generation integer default 0); -create unique index un_description_history on description_history(description_upper); +create table options(profile varchar not null, name varchar not null, value varchar, primary key(profile, name)); + +create table account_values( + profile varchar not null, + account varchar not null, + currency varchar not null default '', + value real not null, + generation integer not null default 0, + primary key(profile, account, currency)); + +create table description_history(description varchar collate NOCASE not null, + description_upper varchar not null, + generation integer not null default 0, + primary key(description)); + create table transactions(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, generation integer default 0); create unique index un_transactions_id on transactions(profile,id); create unique index un_transactions_data_hash on transactions(profile,data_hash);