From 2fabb75d6560c22be0403c341e03e97898aff7ce Mon Sep 17 00:00:00 2001 From: "valdir.cordeiro" Date: Mon, 28 Aug 2023 16:46:54 -0300 Subject: [PATCH 1/2] =?UTF-8?q?bug#al-2803=20Espec=20Cobran=C3=A7a=20Taxa?= =?UTF-8?q?=20conveni=C3=AAncia=20Opera=C3=A7=C3=B5es=20de=20venda=20dev:?= =?UTF-8?q?=20qua:?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pom.xml | 2 +- src/db/migration/V20230828_1036__AL2803.sql | 7 +++++++ 2 files changed, 8 insertions(+), 1 deletion(-) create mode 100644 src/db/migration/V20230828_1036__AL2803.sql diff --git a/pom.xml b/pom.xml index a954c417a..4dcb01e03 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ 4.0.0 br.com.rjconsultores Flyway - 1.8.2 + 1.8.3 diff --git a/src/db/migration/V20230828_1036__AL2803.sql b/src/db/migration/V20230828_1036__AL2803.sql new file mode 100644 index 000000000..2ad894d60 --- /dev/null +++ b/src/db/migration/V20230828_1036__AL2803.sql @@ -0,0 +1,7 @@ +declare + column_exists exception; + pragma exception_init (column_exists , -01430); +begin + execute immediate 'ALTER TABLE EMPRESA ADD INDTAXACONVENIENCIASOVENDA NUMBER(1,0)'; + exception when column_exists then null; +end; \ No newline at end of file From 361fc517a11ea19744e589a2044a2d0d8da8a8d4 Mon Sep 17 00:00:00 2001 From: "valdir.cordeiro" Date: Mon, 28 Aug 2023 16:51:23 -0300 Subject: [PATCH 2/2] =?UTF-8?q?bug#al-2803=20Espec=20Cobran=C3=A7a=20Taxa?= =?UTF-8?q?=20conveni=C3=AAncia=20Opera=C3=A7=C3=B5es=20de=20venda=20dev:?= =?UTF-8?q?=20qua:?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 4dcb01e03..a2832927d 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ 4.0.0 br.com.rjconsultores Flyway - 1.8.3 + 1.9.1