From 6d413a57809eb5f820f90a23d1e658f2dac0d6a8 Mon Sep 17 00:00:00 2001 From: gleimar Date: Tue, 28 Mar 2017 22:58:38 +0000 Subject: [PATCH] =?UTF-8?q?corre=C3=A7=C3=A3o=20script=20bug#8808?= 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@67340 d1611594-4594-4d17-8e1d-87c2c4800839 --- src/db/migration/V20170328_0830__mantis8808.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/db/migration/V20170328_0830__mantis8808.sql b/src/db/migration/V20170328_0830__mantis8808.sql index 021813cc5..3efcca7dc 100644 --- a/src/db/migration/V20170328_0830__mantis8808.sql +++ b/src/db/migration/V20170328_0830__mantis8808.sql @@ -4,6 +4,6 @@ declare begin execute immediate 'ALTER TABLE ESTADO_CIVIL MODIFY (ESTADOCIVIL_ID NOT NULL)'; execute immediate 'ALTER TABLE ESTADO_CIVIL ADD CONSTRAINT ESTADO_CIVIL_PK PRIMARY KEY (ESTADOCIVIL_ID) ENABLE'; - exception when column_exists then null; + exception when others then null; end;