格式化代码.

This commit is contained in:
lijiahang
2024-05-16 10:57:32 +08:00
parent d3a045ec20
commit 77cf635eea
39 changed files with 45 additions and 74 deletions

View File

@@ -19,10 +19,10 @@ MODIFY COLUMN `status` tinyint(0) NULL DEFAULT 0 COMMENT '任务状态' AFTER `p
```sql
-- 删除 quartz 配置
DELETE FROM QRTZ_TRIGGERS;
DELETE FROM QRTZ_LOCKS;
DELETE FROM QRTZ_JOB_DETAILS;
DELETE FROM QRTZ_CRON_TRIGGERS;
DELETE FROM QRTZ_TRIGGERS;
DELETE FROM QRTZ_JOB_DETAILS;
DELETE FROM QRTZ_LOCKS;
-- 修改计划任务为停用
UPDATE exec_job SET status = 0;
```