From 84b9d77b7ee6f569be209109ee722659b5828127 Mon Sep 17 00:00:00 2001 From: luis Date: Wed, 18 Oct 2017 13:35:41 +0000 Subject: [PATCH] =?UTF-8?q?Issue=20#9959:=20A=20exibi=C3=A7=C3=A3o=20do=20?= =?UTF-8?q?veiculo=20para=20venda=20tem=20que=20ser=20a=20do=20rol=20opera?= =?UTF-8?q?tivo=20configurado=20no=20servi=C3=A7o?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@75128 d1611594-4594-4d17-8e1d-87c2c4800839 --- src/db/migration/V20171017_1200__mantis9959.sql | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/db/migration/V20171017_1200__mantis9959.sql diff --git a/src/db/migration/V20171017_1200__mantis9959.sql b/src/db/migration/V20171017_1200__mantis9959.sql new file mode 100644 index 000000000..6cc13c202 --- /dev/null +++ b/src/db/migration/V20171017_1200__mantis9959.sql @@ -0,0 +1,7 @@ +declare + object_exists exception; + pragma exception_init (object_exists , -01430); +begin + execute immediate 'ALTER TABLE EMPRESA add INDNAOALTERARDIAGRAMA NUMBER(1)'; + exception when object_exists then null; +end; \ No newline at end of file