Remove unused Jobs columns

Actually, we can *almost* get rid of the Jobs table entirely...
This commit is contained in:
Eelco Dolstra
2013-05-23 12:11:46 -04:00
parent b1f89bf92d
commit 7b5e92868b
4 changed files with 3 additions and 34 deletions

View File

@ -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