diff --git a/pom.xml b/pom.xml index 543a2fad7..a9aaefb27 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ 4.0.0 br.com.rjconsultores Flyway - 1.12.0 + 1.13.0 diff --git a/src/db/migration/V20230926_1049__AL3082.sql b/src/db/migration/V20230926_1049__AL3082.sql new file mode 100644 index 000000000..2d4c7eac2 --- /dev/null +++ b/src/db/migration/V20230926_1049__AL3082.sql @@ -0,0 +1,7 @@ +declare + column_exists exception; + pragma exception_init (column_exists , -01430); +begin + execute immediate 'ALTER TABLE EMPRESA ADD (HORAINICIOEMBARQUE DATE, HORAFIMEMBARQUE DATE)'; + exception when column_exists then null; +end;