Drop the merged tables after conversion

This commit is contained in:
Eelco Dolstra
2012-03-06 13:42:12 +01:00
parent 8781c35de7
commit a07a2e6687

View File

@@ -39,3 +39,6 @@ update Builds b set
releaseName = (select releaseName from BuildResultInfo r where r.id = b.id),
keep = (select keep from BuildResultInfo r where r.id = b.id)
where exists (select 1 from BuildResultInfo r where r.id = b.id);
drop table BuildSchedulingInfo;
drop table BuildResultInfo;