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:
parent
dbddac0fe9
commit
a053d2d8e5
2 changed files with 22 additions and 14 deletions
|
@ -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 (
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue