Merge pull request #6600 from asymmetric/hash-comment

schema.sql: add comment about hash being in base16
This commit is contained in:
Eelco Dolstra 2022-06-03 08:51:07 +02:00 committed by GitHub
commit 2097c30b08
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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,