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; +/ +