From 725832fec41767e4f339d422336fa94ffb606da3 Mon Sep 17 00:00:00 2001 From: leonardo Date: Fri, 14 Jun 2019 14:23:28 +0000 Subject: [PATCH] =?UTF-8?q?14659:=20Venda=20embarcada=20-=20Aumentar=20qua?= =?UTF-8?q?ntidade=20de=20vendas=20em=20p=C3=A9=20bug#14659=20dev:zauli=20?= =?UTF-8?q?qua:wallysson?= 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@94639 d1611594-4594-4d17-8e1d-87c2c4800839 --- src/db/migration/V20190513_1428__mantis14659.sql | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/db/migration/V20190513_1428__mantis14659.sql diff --git a/src/db/migration/V20190513_1428__mantis14659.sql b/src/db/migration/V20190513_1428__mantis14659.sql new file mode 100644 index 000000000..f0a3a3aa5 --- /dev/null +++ b/src/db/migration/V20190513_1428__mantis14659.sql @@ -0,0 +1,7 @@ +declare + object_exists exception; + pragma exception_init (object_exists , -01430); +begin + execute immediate 'ALTER TABLE ESQUEMA_CORRIDA MODIFY (CANTPARADOS NUMBER(7, 0) )'; + exception when object_exists then null; +end; \ No newline at end of file