From 93cb1e051f851c4c9057f0ad5e0ac92bc538c5b4 Mon Sep 17 00:00:00 2001 From: "valdir.cordeiro" Date: Thu, 25 Apr 2024 16:46:49 -0300 Subject: [PATCH] =?UTF-8?q?bug#al-3856=20ESP05-2024=5FMR=5FOpera=C3=A7?= =?UTF-8?q?=C3=A3o=20conjunta=20dev:valdevir=20qua:?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit acertando o script --- pom.xml | 2 +- src/db/migration/V20240422_1038__AL-3856.sql | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) 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;