Details |
Last modification |
View Log
| RSS feed
Rev |
Author |
Line No. |
Line |
70 |
brianR |
1 |
create table qrtz_scheduler_state
|
|
|
2 |
(
|
|
|
3 |
sched_name varchar(120) not null,
|
|
|
4 |
instance_name varchar(200) not null,
|
|
|
5 |
last_checkin_time bigint not null,
|
|
|
6 |
checkin_interval bigint not null,
|
|
|
7 |
primary key (sched_name,instance_name)
|
|
|
8 |
)
|