Skip to content

Commit

Permalink
Add COMMIT command to SQL scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
mederly committed Sep 3, 2019
1 parent ebaaaaa commit dfb4af9
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 3 deletions.
4 changes: 3 additions & 1 deletion config/sql/_all/h2-upgrade-3.9-4.0.sql
Expand Up @@ -123,4 +123,6 @@ ALTER TABLE m_object DROP COLUMN IF EXISTS datesCount;
ALTER TABLE m_object DROP COLUMN IF EXISTS longsCount;
ALTER TABLE m_object DROP COLUMN IF EXISTS polysCount;
ALTER TABLE m_object DROP COLUMN IF EXISTS referencesCount;
ALTER TABLE m_object DROP COLUMN IF EXISTS stringsCount;
ALTER TABLE m_object DROP COLUMN IF EXISTS stringsCount;

COMMIT;
2 changes: 2 additions & 0 deletions config/sql/_all/mysql-upgrade-3.9-4.0-utf8mb4.sql
Expand Up @@ -154,3 +154,5 @@ DROP TABLE act_ge_bytearray;
DROP TABLE act_re_deployment;
DROP TABLE act_ru_execution;
DROP TABLE act_re_procdef;

COMMIT;
4 changes: 3 additions & 1 deletion config/sql/_all/mysql-upgrade-3.9-4.0.sql
Expand Up @@ -153,4 +153,6 @@ DROP TABLE act_ru_variable;
DROP TABLE act_ge_bytearray;
DROP TABLE act_re_deployment;
DROP TABLE act_ru_execution;
DROP TABLE act_re_procdef;
DROP TABLE act_re_procdef;

COMMIT;
4 changes: 3 additions & 1 deletion config/sql/_all/oracle-upgrade-3.9-4.0.sql
Expand Up @@ -171,4 +171,6 @@ DROP TABLE act_ru_variable;
DROP TABLE act_ge_bytearray;
DROP TABLE act_re_deployment;
DROP TABLE act_ru_execution;
DROP TABLE act_re_procdef;
DROP TABLE act_re_procdef;

COMMIT;
2 changes: 2 additions & 0 deletions config/sql/_all/postgresql-upgrade-3.9-4.0.sql
Expand Up @@ -174,3 +174,5 @@ DROP TABLE act_ge_bytearray;
DROP TABLE act_re_deployment;
DROP TABLE act_ru_execution;
DROP TABLE act_re_procdef;

COMMIT;
2 changes: 2 additions & 0 deletions config/sql/_all/sqlserver-4.0-all.sql
Expand Up @@ -1531,3 +1531,5 @@ ALTER TABLE [dbo].[QRTZ_TRIGGERS] ADD
[JOB_GROUP]
);
-- GO;

COMMIT;
2 changes: 2 additions & 0 deletions config/sql/_all/sqlserver-upgrade-3.9-4.0.sql
Expand Up @@ -155,3 +155,5 @@ DROP TABLE act_ge_bytearray;
DROP TABLE act_re_deployment;
DROP TABLE act_ru_execution;
DROP TABLE act_re_procdef;

COMMIT;

0 comments on commit dfb4af9

Please sign in to comment.