diff --git a/pom.xml b/pom.xml index 85edcc17c..26a2e6f3d 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ 4.0.0 br.com.rjconsultores Flyway - 1.39.2 + 1.39.3 diff --git a/src/db/migration/V20240422_1038__AL-3856.sql b/src/db/migration/V20240422_1038__AL-3856.sql index b3dfeb7ef..a899b7297 100644 --- a/src/db/migration/V20240422_1038__AL-3856.sql +++ b/src/db/migration/V20240422_1038__AL-3856.sql @@ -18,10 +18,12 @@ declare object_exists exception; except_01451 exception; except_01442 exception; + except_02275 exception; pragma exception_init (object_exists , -01430); pragma exception_init (except_01451 , -01451); pragma exception_init (except_01442 , -01442); + pragma exception_init (except_02275 , -02275); begin execute immediate 'ALTER TABLE "RUTA_COMBINACION" ADD CONSTRAINT "FK_RUTA_ALIAS" FOREIGN KEY ("ALIASRUTA_ID") REFERENCES "RUTA" ("RUTA_ID") ENABLE'; @@ -29,6 +31,7 @@ begin when object_exists then null; when except_01451 then null; when except_01442 then null; + when except_02275 then null; end;