From b8a1d15e5193b02fc16b57d57af555cad493786c Mon Sep 17 00:00:00 2001 From: "lucas.taia" Date: Tue, 12 Jul 2022 21:44:39 +0000 Subject: [PATCH] fixes bug#24771 fixes bug#24765 dev:lucas qua: git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@113318 d1611594-4594-4d17-8e1d-87c2c4800839 --- src/db/migration/V20220712_1720__mantis24765.sql | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/db/migration/V20220712_1720__mantis24765.sql diff --git a/src/db/migration/V20220712_1720__mantis24765.sql b/src/db/migration/V20220712_1720__mantis24765.sql new file mode 100644 index 000000000..5a26f3372 --- /dev/null +++ b/src/db/migration/V20220712_1720__mantis24765.sql @@ -0,0 +1,7 @@ +declare +begin + execute immediate 'INSERT INTO funcion_sistema VALUES (funcion_sistema_seq.NEXTVAL, 1, ''ADM > RELATORIOS > RELATORIOS > RELATORIOS ESTATISTICO > PASSAGENS AGER'', + ''COM.RJCONSULTORES.ADMINISTRACION.GUI.RELATORIOS.MENU.RELATORIOPASSAGENSAGER'', 1, SYSDATE, 1)'; + exception when others then null; +end; +