From 5491fbb82cdc12f517891da3cde8e84fab72c058 Mon Sep 17 00:00:00 2001 From: Wilian Domingues Souza Date: Wed, 16 Oct 2024 15:53:06 -0300 Subject: [PATCH] =?UTF-8?q?Integra=C3=A7=C3=A3o=20API=20Revenue=20Geoloc?= =?UTF-8?q?=20-=20bug#AL-5017?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pom.xml | 2 +- src/db/migration/V20241008_1520__AL-5017.sql | 7 +++++++ 2 files changed, 8 insertions(+), 1 deletion(-) create mode 100644 src/db/migration/V20241008_1520__AL-5017.sql diff --git a/pom.xml b/pom.xml index 35658f48c..ba882756c 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ 4.0.0 br.com.rjconsultores Flyway - 1.99.0 + 1.100.0 diff --git a/src/db/migration/V20241008_1520__AL-5017.sql b/src/db/migration/V20241008_1520__AL-5017.sql new file mode 100644 index 000000000..9cf3b821b --- /dev/null +++ b/src/db/migration/V20241008_1520__AL-5017.sql @@ -0,0 +1,7 @@ +declare + column_exists exception; + pragma exception_init (column_exists , -01430); +begin + execute immediate 'ALTER TABLE REVENUE_CONFIG ADD URL_GEOLOC VARCHAR(200)'; + exception when column_exists then null; +end;