]> git.ktnx.net Git - mobile-ledger.git/blobdiff - app/src/main/res/raw/sql_3.sql
let SQL revision files control the transaction
[mobile-ledger.git] / app / src / main / res / raw / sql_3.sql
index 17ed3dbd40a9cf2de01a7b0f67a3ef7035e3dffc..7994a7aafb2748302574ba08c21281c89fb41740 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;
+
 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