XServices/web/WEB-INF/data/QRTZ_SCHEDULER_STATE.ddl
Brian Rosenberger 84a6d44c62 Introduce JobServices and gerenal clean up
git-svn-id: https://brutex.net/svn/xservices/trunk@70 e7e49efb-446e-492e-b9ec-fcafc1997a86
2011-09-19 06:54:10 +00:00

8 lines
241 B
SQL

create table qrtz_scheduler_state
(
sched_name varchar(120) not null,
instance_name varchar(200) not null,
last_checkin_time bigint not null,
checkin_interval bigint not null,
primary key (sched_name,instance_name)
)