From 96355383da14cc42842a4dac9416e528b6fa3988 Mon Sep 17 00:00:00 2001 From: valdevir Date: Wed, 17 Jul 2024 17:53:39 -0300 Subject: [PATCH] fixes bug#AL-4634 --- pom.xml | 2 +- .../oracle => migration}/V20240716_0958__AL-4634.sql | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) rename src/db/{backup/oracle => migration}/V20240716_0958__AL-4634.sql (95%) diff --git a/pom.xml b/pom.xml index fa481a981..5a92d7be0 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ 4.0.0 br.com.rjconsultores Flyway - 1.68.0 + 1.69.0 diff --git a/src/db/backup/oracle/V20240716_0958__AL-4634.sql b/src/db/migration/V20240716_0958__AL-4634.sql similarity index 95% rename from src/db/backup/oracle/V20240716_0958__AL-4634.sql rename to src/db/migration/V20240716_0958__AL-4634.sql index a9f691b33..e2f8705c1 100644 --- a/src/db/backup/oracle/V20240716_0958__AL-4634.sql +++ b/src/db/migration/V20240716_0958__AL-4634.sql @@ -1,7 +1,7 @@ -declare - object_exists exception; - pragma exception_init (object_exists , -01430); -begin - execute immediate 'ALTER TABLE PARADA ADD (CODSIGMA VARCHAR2(7))'; - exception when object_exists then null; +declare + object_exists exception; + pragma exception_init (object_exists , -01430); +begin + execute immediate 'ALTER TABLE PARADA ADD (CODSIGMA VARCHAR2(7))'; + exception when object_exists then null; end; \ No newline at end of file