X-Git-Url: https://git.ktnx.net/?p=mobile-ledger.git;a=blobdiff_plain;f=app%2Fsrc%2Fmain%2Fres%2Fraw%2Fsql_3.sql;h=7994a7aafb2748302574ba08c21281c89fb41740;hp=17ed3dbd40a9cf2de01a7b0f67a3ef7035e3dffc;hb=390a653a4424bd146f73bca3e421a0be252ee443;hpb=81277d1635a9b15fef1614a096d94f8772e40735 diff --git a/app/src/main/res/raw/sql_3.sql b/app/src/main/res/raw/sql_3.sql index 17ed3dbd..7994a7aa 100644 --- a/app/src/main/res/raw/sql_3.sql +++ b/app/src/main/res/raw/sql_3.sql @@ -13,7 +13,11 @@ -- You should have received a copy of the GNU General Public License -- along with MoLe. If not, see . +BEGIN TRANSACTION; + alter table description_history add description_upper varchar; update description_history set description_upper = upper(description); alter table accounts add name_upper varchar; update accounts set name_upper = upper(name); + +COMMIT TRANSACTION; \ No newline at end of file