* Store the name of the machine that performed a build step in the

BuildSteps table.
This commit is contained in:
Eelco Dolstra
2010-08-31 14:08:59 +00:00
parent c174998a0c
commit 2a69745a88
5 changed files with 31 additions and 6 deletions

View File

@ -235,6 +235,8 @@ create table BuildSteps (
startTime integer,
stopTime integer,
machine text not null default '',
primary key (build, stepnr),
foreign key (build) references Builds(id) on delete cascade
);