From b2304e9e41cf0faa536280635e43697d1e2fadba Mon Sep 17 00:00:00 2001 From: valdevir Date: Fri, 18 Aug 2023 20:17:49 -0300 Subject: [PATCH 1/2] fixes #AL-2782 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index afc8aa529..1a83afc1f 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ 4.0.0 br.com.rjconsultores Flyway - 1.7.0 + 1.8.0 From e8033db0af418d641d813708e0a5a075357e2a1f Mon Sep 17 00:00:00 2001 From: valdevir Date: Fri, 18 Aug 2023 20:22:46 -0300 Subject: [PATCH 2/2] fixes # AL-2782 --- src/db/migration/V20230818_0827__AL-2782.sql | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/db/migration/V20230818_0827__AL-2782.sql diff --git a/src/db/migration/V20230818_0827__AL-2782.sql b/src/db/migration/V20230818_0827__AL-2782.sql new file mode 100644 index 000000000..d59e75b7a --- /dev/null +++ b/src/db/migration/V20230818_0827__AL-2782.sql @@ -0,0 +1,7 @@ +declare + column_exists exception; + pragma exception_init (column_exists , -01430); +begin + execute immediate 'ALTER TABLE PRICING ADD (INDEXIBEPOPUPPRICINGPOL NUMBER(1))'; + exception when column_exists then null; +end; \ No newline at end of file