Files
fad_oa/script/sql/20241120表结构备份/sys_role_menu.sql

9 lines
228 B
SQL

create table fad_oa.sys_role_menu
(
role_id bigint not null comment '角色ID',
menu_id bigint not null comment '菜单ID',
primary key (role_id, menu_id)
)
comment '角色和菜单关联表' charset = utf8mb4;