8 lines
136 B
SQL
8 lines
136 B
SQL
create table fad_oa.xxl_job_lock
|
|
(
|
|
lock_name varchar(50) not null comment '锁名称'
|
|
primary key
|
|
)
|
|
charset = utf8mb4;
|
|
|