diff --git a/pom.xml b/pom.xml index 8e72ebec6..35658f48c 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ 4.0.0 br.com.rjconsultores Flyway - 1.98.4 + 1.99.0 diff --git a/src/db/migration/V20241011_1049__AL-5085.sql b/src/db/migration/V20241011_1049__AL-5085.sql new file mode 100644 index 000000000..91b399a44 --- /dev/null +++ b/src/db/migration/V20241011_1049__AL-5085.sql @@ -0,0 +1,18 @@ +declare + object_exists exception; + except_02275 exception; + except_02270 exception; + except_02261 exception; + + pragma exception_init (object_exists , -01430); + pragma exception_init (except_02275 , -02275); + pragma exception_init (except_02270 , -02270); + pragma exception_init (except_02261 , -02261); +begin + execute immediate 'ALTER TABLE ORGAO_CANCELACION ADD(INDDEVOLUCAOTROCA NUMBER(1,0), INDCOBRANCATROCA NUMBER(1,0))'; + exception + when object_exists then null; + when except_02275 then null; + when except_02270 then null; + when except_02261 then null; +end; \ No newline at end of file