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

14 lines
431 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_logglue
(
id int auto_increment
primary key,
job_id int not null comment '任务主键ID',
glue_type varchar(50) null comment 'GLUE类型',
glue_source mediumtext null comment 'GLUE源代码',
glue_remark varchar(128) not null comment 'GLUE备注',
add_time datetime null,
update_time datetime null
)
charset = utf8mb4;