* Support Subversion checkouts.

This commit is contained in:
Eelco Dolstra
2008-11-25 18:13:55 +00:00
parent b4cfd58944
commit 1698e490d0
15 changed files with 143 additions and 24 deletions

View File

@@ -241,3 +241,12 @@ create table CachedPathInputs (
storePath text not null,
primary key (srcPath, sha256hash)
);
create table CachedSubversionInputs (
uri text not null,
revision integer not null,
sha256hash text not null,
storePath text not null,
primary key (uri, revision)
);