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

14 lines
456 B
SQL
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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;