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

13 lines
510 B
MySQL
Raw Normal View History

create table fad_oa.xxl_job_group
(
id int auto_increment
primary key,
app_name varchar(64) not null comment '执行器AppName',
title varchar(12) not null comment '执行器名称',
address_type tinyint default 0 not null comment '执行器地址类型0=自动注册、1=手动录入',
address_list text null comment '执行器地址列表,多地址逗号分隔',
update_time datetime null
)
charset = utf8mb4;