From 9ae509b0d2cd9215a4e08a955ea30286c346df5c Mon Sep 17 00:00:00 2001 From: thiago Date: Tue, 5 Dec 2017 22:13:59 +0000 Subject: [PATCH] =?UTF-8?q?fixed=20bug=20#10317=20-=20Altera=C3=A7=C3=A3o?= =?UTF-8?q?=20em=20tamanho=20de=20campo=20em=20tabela=20MD=5FDOCUMENTO.?= 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@77022 d1611594-4594-4d17-8e1d-87c2c4800839 --- src/db/migration/V20171205_2010__mantis10317.sql | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 src/db/migration/V20171205_2010__mantis10317.sql diff --git a/src/db/migration/V20171205_2010__mantis10317.sql b/src/db/migration/V20171205_2010__mantis10317.sql new file mode 100644 index 000000000..714c868e1 --- /dev/null +++ b/src/db/migration/V20171205_2010__mantis10317.sql @@ -0,0 +1,8 @@ +declare + column_exists exception; + pragma exception_init (column_exists , -01430); +begin + execute immediate 'ALTER TABLE MD_DOCUMENTO MODIFY (NUMEROINICIAL NUMBER(15), + NUMEROFINAL NUMBER(15) )'; + exception when column_exists then null; +end; \ No newline at end of file