]> git.ktnx.net Git - mobile-ledger.git/blob - app/src/main/res/raw/sql_3.sql
whitespace
[mobile-ledger.git] / app / src / main / res / raw / sql_3.sql
1 alter table description_history add description_upper varchar;
2 update description_history set description_upper = upper(description);
3 alter table accounts add name_upper varchar;
4 update accounts set name_upper = upper(name);