X-Git-Url: https://git.ktnx.net/?p=mobile-ledger.git;a=blobdiff_plain;f=app%2Fsrc%2Fmain%2Fres%2Fraw%2Fsql_39.sql;h=4f5db2ac122127b381634f75b090b7465268ffc1;hp=92582fac99bbbe8c1938a7244926807be941c469;hb=390a653a4424bd146f73bca3e421a0be252ee443;hpb=81277d1635a9b15fef1614a096d94f8772e40735 diff --git a/app/src/main/res/raw/sql_39.sql b/app/src/main/res/raw/sql_39.sql index 92582fac..4f5db2ac 100644 --- a/app/src/main/res/raw/sql_39.sql +++ b/app/src/main/res/raw/sql_39.sql @@ -12,8 +12,13 @@ -- -- You should have received a copy of the GNU General Public License -- along with MoLe. If not, see . + +BEGIN TRANSACTION; + create table description_history_new(description varchar not null primary key, description_upper varchar, generation integer default 0); insert into description_history_new(description, description_upper) select description, description_upper from description_history; drop table description_history; alter table description_history_new rename to description_history; create unique index un_description_history on description_history(description_upper); + +COMMIT TRANSACTION; \ No newline at end of file