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;