Add support for darcs repositories.

This commit is contained in:
Petr Rockai
2013-02-05 19:50:58 +01:00
parent 5078730cb5
commit 5a35912956
6 changed files with 209 additions and 2 deletions

View File

@ -322,6 +322,15 @@ create table CachedGitInputs (
primary key (uri, branch, revision)
);
create table CachedDarcsInputs (
uri text not null,
revision text not null,
sha256hash text not null,
storePath text not null,
revCount integer not null,
primary key (uri, revision)
);
create table CachedHgInputs (
uri text not null,
branch text not null,