diff --git a/src/db/migration/V20190502_1900__mantis13945.sql b/src/db/migration/V20190502_1900__mantis13945.sql new file mode 100644 index 000000000..618964eee --- /dev/null +++ b/src/db/migration/V20190502_1900__mantis13945.sql @@ -0,0 +1,7 @@ +declare + object_exists exception; + pragma exception_init (object_exists , -00001); +begin + execute immediate 'Insert into FUNCION_SISTEMA (FUNCIONSISTEMA_ID,SISTEMA_ID,NOMBFUNCION,DESCRUTA,ACTIVO,FECMODIF,USUARIO_ID) values (FUNCION_SISTEMA_SEQ.nextval, 1,''ADM > RELATORIOS > RELATORIOS > RELATORIOS ESTATISTICO > QUADRO DEMONSTRATIVO DO MOVIMENTO PASSAGEIRO'',''COM.RJCONSULTORES.ADMINISTRACION.GUI.RELATORIOS.MENU.QUADRODEMONSTRATIVODOMOVIMENTOPASSAGEIRO'',1,sysdate,null)'; + exception when object_exists then null; +end; \ No newline at end of file