From 9f50492bdc73d968948cf059b6ab3be8e2373ebf Mon Sep 17 00:00:00 2001 From: gleimar Date: Mon, 20 Mar 2017 13:22:13 +0000 Subject: [PATCH] =?UTF-8?q?corre=C3=A7=C3=A3o=20de=20erro=20na=20cria?= =?UTF-8?q?=C3=A7=C3=A3o=20do=20campo=20INDINTEGRADOAG=20no=20caja=20que?= =?UTF-8?q?=20n=C3=A3o=20estava=20setado=20com=20o=20valor=20default?= 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@67039 d1611594-4594-4d17-8e1d-87c2c4800839 --- src/db/migration/V20170320_1016__mantis7788.sql | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 src/db/migration/V20170320_1016__mantis7788.sql diff --git a/src/db/migration/V20170320_1016__mantis7788.sql b/src/db/migration/V20170320_1016__mantis7788.sql new file mode 100644 index 000000000..e6b5542ff --- /dev/null +++ b/src/db/migration/V20170320_1016__mantis7788.sql @@ -0,0 +1,6 @@ +declare + dup_val_on_index exception; +begin + execute immediate 'ALTER TABLE CAJA MODIFY (INDINTEGRADOAG DEFAULT 0 )'; + exception when OTHERS then null; +end;