增加属于自己的cursorrules

This commit is contained in:
dengqichen 2024-12-02 17:53:26 +08:00
parent adb072fe52
commit c0027f4c13

View File

@ -74,12 +74,12 @@ VALUES
(3, 3);
-- 初始化用户角色关联
INSERT INTO sys_user_role (id, create_time, user_id, role_id)
INSERT INTO sys_user_role (user_id, role_id)
VALUES
(1, NOW(), 1, 1),
(2, NOW(), 2, 2),
(3, NOW(), 3, 2),
(4, NOW(), 4, 3);
( 1, 1),
( 2, 2),
(3, 2),
(4, 3);
-- 初始化角色菜单关联
INSERT INTO sys_role_menu (role_id, menu_id)