diff --git a/src/db/migration/V20210714_1639__mantis22299.sql b/src/db/migration/V20210714_1639__mantis22299.sql new file mode 100644 index 000000000..9b75b9f24 --- /dev/null +++ b/src/db/migration/V20210714_1639__mantis22299.sql @@ -0,0 +1,14 @@ +declare + dup_val_on_index exception; + except_02291 exception; + + pragma exception_init (dup_val_on_index , -00001); + pragma exception_init (except_02291 , -02291); + +begin + execute immediate 'INSERT INTO funcion_sistema VALUES (funcion_sistema_seq.NEXTVAL, 1, ''ADM > RELATORIOS > RELATORIOS ESTATISTICOS > RELATORIO MENSAL DAER'', + ''COM.RJCONSULTORES.ADMINISTRACION.GUI.RELATORIOS.MENU.RELATORIOMENSALDAER'', 1, SYSDATE, 1)'; + exception + when dup_val_on_index then null; + when except_02291 then null; +end; \ No newline at end of file