Merge pull request 'fixes bug#AL-3915' (!97) from AL-3915 into master

Reviewed-on: utilidades/Flyway#97
master
gleimar 2024-03-04 00:20:11 +00:00
commit 6ba4dcd976
2 changed files with 10 additions and 1 deletions

View File

@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>br.com.rjconsultores</groupId>
<artifactId>Flyway</artifactId>
<version>1.30.1</version>
<version>1.31.0</version>
<distributionManagement>
<repository>

View File

@ -0,0 +1,9 @@
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 > RELATORIOS >> BILHETES VENDIDOS ESTOQUE AGÊNCIA'', ''COM.RJCONSULTORES.ADMINISTRACION.GUI.RELATORIOS.MENU.RELATORIOBILHETESVENDIDOSESTOQUEAGENCIA'', 1, sysdate, 1)';
exception when others then null;
end;