diff --git a/src/db/migration/V20171031_1849__mantis10080.sql b/src/db/migration/V20171031_1849__mantis10080.sql index 81a62988f..d96e03b42 100644 --- a/src/db/migration/V20171031_1849__mantis10080.sql +++ b/src/db/migration/V20171031_1849__mantis10080.sql @@ -1,8 +1,6 @@ declare - dup_val_on_index exception; - -begin + begin execute immediate 'Insert into MOTIVO_CANCELACION (MOTIVOCANCELACION_ID,DESCMOTIVO,TIPOMOTIVO,ACTIVO,FECMODIF,USUARIO_ID,CVESISTEMA) values (MOTIVO_CANCELACION_SEQ.nextval,''CANCELAMENTO ECF'',''B'',1,sysdate,1,''CANCELAMENTO_ECF'')'; - exception when dup_val_on_index then null; + exception when others then null; end;