一对一聊天重构,期待群聊开发
This commit is contained in:
13
script/sql/20241120表结构备份/xxl_job_user.sql
Normal file
13
script/sql/20241120表结构备份/xxl_job_user.sql
Normal file
@@ -0,0 +1,13 @@
|
||||
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;
|
||||
|
||||
Reference in New Issue
Block a user