Add support for darcs repositories.

This commit is contained in:
Petr Rockai
2013-09-07 13:28:51 +02:00
parent 5078730cb5
commit 5a35912956
6 changed files with 209 additions and 2 deletions
+9
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,