13 lines
510 B
MySQL
13 lines
510 B
MySQL
|
|
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;
|
|||
|
|
|