From dbc90dc89e628902a16313fe685b6554f2b1751b Mon Sep 17 00:00:00 2001 From: "wallace.henrique" Date: Mon, 23 Sep 2024 15:26:42 -0300 Subject: [PATCH] fixes bug#AL-4295 --- pom.xml | 2 +- src/db/backup/oracle/V20240920_1051__AL4925.sql | 7 +++++++ 2 files changed, 8 insertions(+), 1 deletion(-) create mode 100644 src/db/backup/oracle/V20240920_1051__AL4925.sql diff --git a/pom.xml b/pom.xml index 8122aaf3b..a1b07b84d 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ 4.0.0 br.com.rjconsultores Flyway - 1.95.0 + 1.96.0 diff --git a/src/db/backup/oracle/V20240920_1051__AL4925.sql b/src/db/backup/oracle/V20240920_1051__AL4925.sql new file mode 100644 index 000000000..f1c044e56 --- /dev/null +++ b/src/db/backup/oracle/V20240920_1051__AL4925.sql @@ -0,0 +1,7 @@ +declare + column_exists exception; + pragma exception_init (column_exists , -01430); +begin + execute immediate 'ALTER TABLE CATEGORIA ADD INDVENDEEMPEAPI NUMBER(1)'; + exception when column_exists then null; +end;