Remove unused Jobs columns
Actually, we can *almost* get rid of the Jobs table entirely...
This commit is contained in:
@ -100,13 +100,8 @@ create table Jobs (
|
||||
jobset text not null,
|
||||
name text not null,
|
||||
|
||||
active integer not null default 1, -- !!! obsolete, remove
|
||||
|
||||
errorMsg text, -- evalution error for this job
|
||||
|
||||
firstEvalTime integer, -- first time the evaluator saw this job
|
||||
lastEvalTime integer, -- last time the evaluator saw this job
|
||||
|
||||
primary key (project, jobset, name),
|
||||
foreign key (project) references Projects(name) on delete cascade on update cascade,
|
||||
foreign key (project, jobset) references Jobsets(project, name) on delete cascade on update cascade
|
||||
|
Reference in New Issue
Block a user