9 lines
228 B
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;
|
|
|