fixes bug#13945

dev:lucas

qua: 

git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@92775 d1611594-4594-4d17-8e1d-87c2c4800839
master
lucas.taia 2019-05-02 22:18:48 +00:00
parent c7bbe4ab47
commit c1aa8244f7
1 changed files with 7 additions and 0 deletions

View File

@ -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;