From 48ad356632312e311c9e70ec3c1ac5771c1e43e5 Mon Sep 17 00:00:00 2001 From: "lucas.taia" Date: Thu, 3 May 2018 21:24:41 +0000 Subject: [PATCH] fixes bug#11046 dev:lucas qua: git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@81577 d1611594-4594-4d17-8e1d-87c2c4800839 --- src/db/migration/V20180503_1630__mantis11046.sql | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/db/migration/V20180503_1630__mantis11046.sql diff --git a/src/db/migration/V20180503_1630__mantis11046.sql b/src/db/migration/V20180503_1630__mantis11046.sql new file mode 100644 index 000000000..2a9672fbf --- /dev/null +++ b/src/db/migration/V20180503_1630__mantis11046.sql @@ -0,0 +1,7 @@ +declare + column_exists exception; + pragma exception_init (column_exists , -01430); +begin + execute immediate 'ALTER TABLE BPE ADD (DHVALIDADE VARCHAR2(25))'; + exception when column_exists then null; +end; \ No newline at end of file