This commit is contained in:
Eelco Dolstra
2008-11-27 21:08:17 +00:00
parent e4e7fac958
commit 06b49e0df7
4 changed files with 81 additions and 12 deletions

View File

@@ -328,6 +328,13 @@ create trigger cascadeReleaseSetDelete
end;
create trigger cascadeReleaseSetUpdate
update of name on ReleaseSets
for each row begin
update ReleaseSetJobs set release = new.name where project = old.project and release = old.name;
end;
create table ReleaseSetJobs (
project text not null,
release text not null,