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

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