Subversion Repositories XServices

Rev

Rev 70 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
70 brianR 1
create table qrtz_job_details (
2
sched_name varchar(120) not null,
3
job_name varchar(200) not null,
4
job_group varchar(200) not null,
5
description varchar(250) ,
6
job_class_name varchar(250) not null,
7
is_durable varchar(5) not null,
8
is_nonconcurrent varchar(5) not null,
9
is_update_data varchar(5) not null,
10
requests_recovery varchar(5) not null,
11
job_data blob,
12
primary key (sched_name,job_name,job_group)
13
)