diff --git a/src/db/migration/V20170517_1435__mantis8900.sql b/src/db/migration/V20170517_1435__mantis8900.sql new file mode 100644 index 000000000..ce3faa4b7 --- /dev/null +++ b/src/db/migration/V20170517_1435__mantis8900.sql @@ -0,0 +1,8 @@ +declare + dup_val_on_index exception; + pragma exception_init (dup_val_on_index , -00001); +begin + execute immediate 'INSERT INTO TIPO_OPERACION_CC (TIPOOPERACIONCC_ID, DESCTIPO, CVETIPO, INDCREDITO, ACTIVO, FECMODIF, USUARIO_ID) VALUES (5, ''COMISSAO'', ''CM'', 1, 1, SYSDATE, 99)'; + + exception when dup_val_on_index then null; +end; \ No newline at end of file