From 215a2aa008f49784cd284e1c35089965fdf6b764 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aristides=20dos=20Reis=20J=C3=BAnior?= Date: Wed, 5 Jun 2024 16:33:35 -0300 Subject: [PATCH] fixes bug #AL_4457 --- pom.xml | 2 +- src/db/migration/V20240605_1454__AL-4457.sql | 7 +++++++ 2 files changed, 8 insertions(+), 1 deletion(-) create mode 100644 src/db/migration/V20240605_1454__AL-4457.sql diff --git a/pom.xml b/pom.xml index 9ae129334..4c82103de 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ 4.0.0 br.com.rjconsultores Flyway - 1.45.2 + 1.45.3 diff --git a/src/db/migration/V20240605_1454__AL-4457.sql b/src/db/migration/V20240605_1454__AL-4457.sql new file mode 100644 index 000000000..a09eeb255 --- /dev/null +++ b/src/db/migration/V20240605_1454__AL-4457.sql @@ -0,0 +1,7 @@ +declare + indice_nao_existe exception; + pragma exception_init (indice_nao_existe , -01418); +begin + execute immediate 'DROP INDEX unique_tarifa_oficial'; + exception when indice_nao_existe then null; +end; \ No newline at end of file