* Store the name of the machine that performed a build step in the
BuildSteps table.
This commit is contained in:
@ -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
|
||||
);
|
||||
|
Reference in New Issue
Block a user