1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-30 07:33:16 +02:00

* Add the deriver to the ValidPaths table. In principle we could now

store all the derivers of a path efficiently.  But that opens a big
  can of worms with respect to garbage collector semantics.
This commit is contained in:
Eelco Dolstra 2010-02-18 13:48:18 +00:00
parent dbddac0fe9
commit a053d2d8e5
2 changed files with 22 additions and 14 deletions

View file

@ -4,7 +4,8 @@ create table if not exists ValidPaths (
id integer primary key autoincrement not null,
path text unique not null,
hash text not null,
registrationTime integer not null
registrationTime integer not null,
deriver text
);
create table if not exists Refs (