Fix the Darcs schema upgrade

This commit is contained in:
Eelco Dolstra
2013-09-19 12:00:29 +00:00
parent 74388353b5
commit 7efe793ee6

8
src/sql/upgrade-20.sql Normal file
View File

@@ -0,0 +1,8 @@
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)
);