fixes bug#21465

qua:
dev:Valdir

git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@105276 d1611594-4594-4d17-8e1d-87c2c4800839
master
valdevir 2021-02-03 17:26:31 +00:00
parent 54f87c06cb
commit 1f8b3c91fd
2 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,6 @@
declare
begin
execute immediate 'insert into funcion_sistema (funcionsistema_id,sistema_id,nombfuncion,descruta,activo,fecmodif,usuario_id) values
(FUNCION_SISTEMA_SEQ.NEXTVAL,1,''ADM > PASAJERO FRECUENTE > IMPORTAR CLIENTES SRVP'', ''COM.RJCONSULTORES.ADMINISTRACION.GUI.PASAJEROFRECUENTE.MENU.IMPORTARCLIENTESSRVP'',1,SYSDATE,-1)';
exception when others then null;
end;

View File

@ -0,0 +1,7 @@
DO $$
BEGIN
insert into funcion_sistema (funcionsistema_id,sistema_id,nombfuncion,descruta,activo,fecmodif,usuario_id) values
(FUNCION_SISTEMA_SEQ.NEXTVAL,1,'ADM > PASAJERO FRECUENTE > IMPORTAR CLIENTES SRVP', 'COM.RJCONSULTORES.ADMINISTRACION.GUI.PASAJEROFRECUENTE.MENU.IMPORTARCLIENTESSRVP',1,SYSDATE,-1);
EXCEPTION WHEN duplicate_column THEN NULL;
END
$$;