diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2016-03-30T15·35+0200 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2016-03-30T15·35+0200 |
commit | 9cee600c88d2a23b872be1c175450011a6d52152 (patch) | |
tree | 47b7f4fbad763b3a721ce80a73a98644eb5fd445 /src/libstore/schema.sql | |
parent | b86555aa2b51aaadf59363b0561dd0d68df74b6d (diff) |
LocalStore: Keep track of ultimately trusted paths
These are content-addressed paths or outputs of locally performed builds. They are trusted even if they don't have signatures, so "nix verify-paths" won't complain about them.
Diffstat (limited to 'src/libstore/schema.sql')
-rw-r--r-- | src/libstore/schema.sql | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/libstore/schema.sql b/src/libstore/schema.sql index c1b4a689afcb..39c74c65a4f2 100644 --- a/src/libstore/schema.sql +++ b/src/libstore/schema.sql @@ -4,7 +4,9 @@ create table if not exists ValidPaths ( hash text not null, registrationTime integer not null, deriver text, - narSize integer + narSize integer, + ultimate integer, -- null implies "false" + sigs text -- space-separated ); create table if not exists Refs ( |