From 5e85f3fccdaeb1e3ba42166d111bcee3a7cd0e8e Mon Sep 17 00:00:00 2001 From: alberto Date: Mon, 11 May 2020 20:43:11 +0000 Subject: [PATCH] (GLPI 23730) Desenvolver via ADM para limpeza de Cache bug#19140 dev: trevezani qua: git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@101542 d1611594-4594-4d17-8e1d-87c2c4800839 --- src/db/migration/V20200511_1725__mantis19140.sql | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/db/migration/V20200511_1725__mantis19140.sql diff --git a/src/db/migration/V20200511_1725__mantis19140.sql b/src/db/migration/V20200511_1725__mantis19140.sql new file mode 100644 index 000000000..7b176801c --- /dev/null +++ b/src/db/migration/V20200511_1725__mantis19140.sql @@ -0,0 +1,15 @@ +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 > SEGURANCA > API'', ''COM.RJCONSULTORES.ADMINISTRACION.GUI.SEGURIDAD.MENU.RECARREGARCACHELOCALIDADESAPI'', 1, NULL, 1)'; + exception when others then null; +end; +/ +declare +begin + execute immediate 'INSERT INTO CONSTANTE (CONSTANTE_ID,NOMBCONSTANTE,DESCCONSTANTE,INDTIPOCONSTANTE,VALORCONSTANTE,INDMANTENIMIENTOUSUARIO,ACTIVO,FECMODIF,USUARIO_ID) VALUES +(CONSTANTE_seq.nextval,''URL_API'',''URL DA API'',''1'',NULL,1,1,null,1)'; + exception when others then null; +end; +/ +