Commit f23b0b9d5c41e2a4e3b5ea670a271a1ff5ba3400
1 parent
b15b5906
解决QRTZ_区分大小写的问题
Showing
1 changed file
with
12 additions
and
0 deletions
jeecg-boot/db/jeecgboot-mysql-5.7.sql
... | ... | @@ -5364,6 +5364,18 @@ DROP TABLE IF EXISTS QRTZ_TRIGGERS; |
5364 | 5364 | DROP TABLE IF EXISTS QRTZ_JOB_DETAILS; |
5365 | 5365 | DROP TABLE IF EXISTS QRTZ_CALENDARS; |
5366 | 5366 | |
5367 | +drop table if exists qrtz_fired_triggers; | |
5368 | +drop table if exists qrtz_paused_trigger_grps; | |
5369 | +drop table if exists qrtz_scheduler_state; | |
5370 | +drop table if exists qrtz_locks; | |
5371 | +drop table if exists qrtz_simple_triggers; | |
5372 | +drop table if exists qrtz_simprop_triggers; | |
5373 | +drop table if exists qrtz_cron_triggers; | |
5374 | +drop table if exists qrtz_blob_triggers; | |
5375 | +drop table if exists qrtz_triggers; | |
5376 | +drop table if exists qrtz_job_details; | |
5377 | +drop table if exists qrtz_calendars; | |
5378 | + | |
5367 | 5379 | |
5368 | 5380 | CREATE TABLE QRTZ_JOB_DETAILS |
5369 | 5381 | ( |
... | ... |