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.
23 lines
1.4 KiB
SQL
23 lines
1.4 KiB
SQL
create table qrtz_simprop_triggers
|
|
(
|
|
SCHED_NAME varchar(120) not null comment '스케줄러 이름',
|
|
TRIGGER_NAME varchar(200) not null comment '트리거 이름',
|
|
TRIGGER_GROUP varchar(200) not null comment '트리거 그룹',
|
|
STR_PROP_1 varchar(512) null comment '문자열 속성 1',
|
|
STR_PROP_2 varchar(512) null comment '문자열 속성 2',
|
|
STR_PROP_3 varchar(512) null comment '문자열 속성 3',
|
|
INT_PROP_1 int null comment '정수 속성 1',
|
|
INT_PROP_2 int null comment '정수 속성 2',
|
|
LONG_PROP_1 bigint null comment '긴 정수 속성 1',
|
|
LONG_PROP_2 bigint null comment '긴 정수 속성 2',
|
|
DEC_PROP_1 decimal(13, 4) null comment '소수점 속성 1 (13자리, 소수점 4자리)',
|
|
DEC_PROP_2 decimal(13, 4) null comment '소수점 속성 2 (13자리, 소수점 4자리)',
|
|
BOOL_PROP_1 varchar(1) null comment '불린 속성 1 (Y/N)',
|
|
BOOL_PROP_2 varchar(1) null comment '불린 속성 2 (Y/N)',
|
|
primary key (SCHED_NAME, TRIGGER_NAME, TRIGGER_GROUP),
|
|
constraint qrtz_simprop_triggers_ibfk_1
|
|
foreign key (SCHED_NAME, TRIGGER_NAME, TRIGGER_GROUP) references qrtz_triggers (SCHED_NAME, TRIGGER_NAME, TRIGGER_GROUP)
|
|
)
|
|
comment 'Quartz 속성 기반 트리거 정보 - 다양한 데이터 타입의 속성을 가진 트리거';
|
|
|