Fix syntax error

This commit is contained in:
Eelco Dolstra 2015-08-12 14:53:34 +02:00
parent d4759c1da2
commit 006d105f93

View file

@ -64,7 +64,7 @@ create table Jobsets (
checkInterval integer not null default 300, -- minimum time in seconds between polls (0 = disable polling)
schedulingShares integer not null default 100,
fetchErrorMsg text,
check schedulingShares > 0,
check (schedulingShares > 0),
primary key (project, name),
foreign key (project) references Projects(name) on delete cascade on update cascade
#ifdef SQLITE