You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
551 B
Java

--
SELECT parent_id, sort
INTO @parentId, @sort
FROM system_menu
WHERE name = ''
LIMIT 1;
--
INSERT INTO system_menu(name, permission, type, sort, parent_id, path, icon, component, status)
VALUES ('', 'member:user:update-point', 3, @sort + 1, @parentId, '', '', '', 0);
INSERT INTO system_menu(name, permission, type, sort, parent_id, path, icon, component, status)
VALUES ('', 'member:user:update-balance', 3, @sort + 2, @parentId, '', '', '', 0);