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

14 lines
456 B
MySQL
Raw Normal View History

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;