aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEelco Dolstra <edolstra@gmail.com>2022-06-03 08:51:07 +0200
committerGitHub <noreply@github.com>2022-06-03 08:51:07 +0200
commit2097c30b08af19a9b42705fbc07463bea60dfb5b (patch)
treeee31a805051cee8fc8465df4417cff88878b6774
parentb2edca1def9ff81accdc82b6b1793364adebb910 (diff)
parenta9358a6097e0ec0491d4eb83c556c783128a2cb0 (diff)
Merge pull request #6600 from asymmetric/hash-comment
schema.sql: add comment about hash being in base16
-rw-r--r--src/libstore/schema.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstore/schema.sql b/src/libstore/schema.sql
index 09c71a2b8..d65e5335e 100644
--- a/src/libstore/schema.sql
+++ b/src/libstore/schema.sql
@@ -1,7 +1,7 @@
create table if not exists ValidPaths (
id integer primary key autoincrement not null,
path text unique not null,
- hash text not null,
+ hash text not null, -- base16 representation
registrationTime integer not null,
deriver text,
narSize integer,