forked from lix-project/hydra
9 lines
238 B
SQL
9 lines
238 B
SQL
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)
|
|
);
|