You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
868 B
SQL
15 lines
868 B
SQL
create table qrtz_simple_triggers
|
|
(
|
|
SCHED_NAME varchar(120) not null comment '스케줄러 이름',
|
|
TRIGGER_NAME varchar(200) not null comment '트리거 이름',
|
|
TRIGGER_GROUP varchar(200) not null comment '트리거 그룹',
|
|
REPEAT_COUNT bigint(7) not null comment '반복 횟수 (-1: 무제한, 0: 1회만, 양수: 지정 횟수)',
|
|
REPEAT_INTERVAL bigint(12) not null comment '반복 간격 (밀리초 단위)',
|
|
TIMES_TRIGGERED bigint(10) not null comment '지금까지 실행된 횟수',
|
|
primary key (SCHED_NAME, TRIGGER_NAME, TRIGGER_GROUP),
|
|
constraint qrtz_simple_triggers_ibfk_1
|
|
foreign key (SCHED_NAME, TRIGGER_NAME, TRIGGER_GROUP) references qrtz_triggers (SCHED_NAME, TRIGGER_NAME, TRIGGER_GROUP)
|
|
)
|
|
comment 'Quartz 단순 트리거 정보 - 고정 간격으로 반복 실행하는 트리거';
|
|
|