]> git.ktnx.net Git - mobile-ledger.git/blobdiff - app/src/main/res/raw/sql_39.sql
let SQL revision files control the transaction
[mobile-ledger.git] / app / src / main / res / raw / sql_39.sql
index 92582fac99bbbe8c1938a7244926807be941c469..4f5db2ac122127b381634f75b090b7465268ffc1 100644 (file)
 --
 -- You should have received a copy of the GNU General Public License
 -- along with MoLe. If not, see <https://www.gnu.org/licenses/>.
+
+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