Record which build a failed build step was propagated from

This commit is contained in:
Eelco Dolstra
2015-02-25 16:42:32 +01:00
parent 48af914e28
commit adc72d2409
6 changed files with 46 additions and 7 deletions

3
src/sql/upgrade-32.sql Normal file
View File

@@ -0,0 +1,3 @@
alter table BuildSteps
add column propagatedFrom integer,
add foreign key (propagatedFrom) references Builds(id) on delete cascade;