From c0027f4c13abe273a6e0b2d2e012147876725d3f Mon Sep 17 00:00:00 2001 From: dengqichen Date: Mon, 2 Dec 2024 17:53:26 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E5=B1=9E=E4=BA=8E=E8=87=AA?= =?UTF-8?q?=E5=B7=B1=E7=9A=84cursorrules?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../main/resources/db/migration/V1.0.1__init_data.sql | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/backend/src/main/resources/db/migration/V1.0.1__init_data.sql b/backend/src/main/resources/db/migration/V1.0.1__init_data.sql index 47c2a0e8..70d0edd7 100644 --- a/backend/src/main/resources/db/migration/V1.0.1__init_data.sql +++ b/backend/src/main/resources/db/migration/V1.0.1__init_data.sql @@ -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)