diff --git a/src/db/migration/V20170725_1721__mantis9271.sql b/src/db/migration/V20170725_1721__mantis9271.sql index 158324cbb..ae3307565 100644 --- a/src/db/migration/V20170725_1721__mantis9271.sql +++ b/src/db/migration/V20170725_1721__mantis9271.sql @@ -2,7 +2,7 @@ declare dup_val_on_index exception; pragma exception_init (dup_val_on_index , -00001); begin - execute immediate 'Insert into MOTIVO_CANCELACION (MOTIVOCANCELACION_ID,DESCMOTIVO,TIPOMOTIVO,EQUIVALENCIAELEKTRA_ID,EQUIVALENCIA_ID,ACTIVO,FECMODIF,USUARIO_ID,TXTRELATORIO) values (''38'',''SOLICITACAO ESTORNO'',''B'',null,null,''1'',SYSDATE,''1'',''SOLICITACAO ESTORNO'')'; + execute immediate 'Insert into MOTIVO_REIMPRESION (MOTIVOREIMPRESION_ID,DESCMOTIVO,ACTIVO,FECMODIF,USUARIO_ID) values (''38'',''SOLICITACAO ESTORNO'',''1'',SYSDATE,''1'')'; exception when dup_val_on_index then null; end;