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_locks
2
  (
3
    sched_name varchar(120) not null,
4
    lock_name varchar(40) not null,
5
primary key (sched_name,lock_name)
6
)