9 lines
228 B
SQL
9 lines
228 B
SQL
create table fad_oa.sys_user_role
|
|
(
|
|
user_id bigint not null comment '用户ID',
|
|
role_id bigint not null comment '角色ID',
|
|
primary key (user_id, role_id)
|
|
)
|
|
comment '用户和角色关联表' charset = utf8mb4;
|
|
|