From 0f7960ad4c942380c45057c201d62656dbe9406b Mon Sep 17 00:00:00 2001 From: "bruno.neves" Date: Wed, 14 Mar 2018 13:44:29 +0000 Subject: [PATCH] =?UTF-8?q?fixes=20bug#0010739=20obs:=20adicionado=20o=20c?= =?UTF-8?q?ampo=20no=20formulario=20de=20endere=C3=A7o=20da=20empresa,=20c?= =?UTF-8?q?riada=20a=20coluna=20no=20banco=20de=20dados?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit dev: Daniel qua: Fabinho git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@79900 d1611594-4594-4d17-8e1d-87c2c4800839 --- src/db/migration/V20180314_0932__mantis10739.sql | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 src/db/migration/V20180314_0932__mantis10739.sql diff --git a/src/db/migration/V20180314_0932__mantis10739.sql b/src/db/migration/V20180314_0932__mantis10739.sql new file mode 100644 index 000000000..3facb8ea3 --- /dev/null +++ b/src/db/migration/V20180314_0932__mantis10739.sql @@ -0,0 +1,8 @@ +declare + column_exists exception; + pragma exception_init (column_exists , -01430); +begin + execute immediate 'ALTER TABLE EMPRESA ADD (NUMTELSACDEF VARCHAR2(14))'; + exception when column_exists then null; +end; +/ \ No newline at end of file