14 lines
456 B
SQL
14 lines
456 B
SQL
create table fad_oa.xxl_job_user
|
||
(
|
||
id int auto_increment
|
||
primary key,
|
||
username varchar(50) not null comment '账号',
|
||
password varchar(50) not null comment '密码',
|
||
role tinyint not null comment '角色:0-普通用户、1-管理员',
|
||
permission varchar(255) null comment '权限:执行器ID列表,多个逗号分割',
|
||
constraint i_username
|
||
unique (username)
|
||
)
|
||
charset = utf8mb4;
|
||
|