inital version of links to diff in scm

This commit is contained in:
Rob Vermaas
2010-02-25 15:32:56 +00:00
parent 1691f3b9ae
commit 7208f79828
3 changed files with 26 additions and 1 deletions

View File

@ -420,6 +420,11 @@ create table JobsetInputHashes (
foreign key (project, jobset) references Jobsets(project, name) on delete cascade on update cascade
);
create table UriRevMapper (
baseuri text not null,
uri text not null,
primary key (baseuri)
);
-- Some indices.
create index IndexBuildInputsOnBuild on BuildInputs(build);