mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-11 00:36:20 +02:00
826877cabf
Not exposed anywhere, but built realisations are now signed (and this should be forwarded when copy-ing them around)
12 lines
478 B
SQL
12 lines
478 B
SQL
-- Extension of the sql schema for content-addressed derivations.
|
|
-- Won't be loaded unless the experimental feature `ca-derivations`
|
|
-- is enabled
|
|
|
|
create table if not exists Realisations (
|
|
drvPath text not null,
|
|
outputName text not null, -- symbolic output id, usually "out"
|
|
outputPath integer not null,
|
|
signatures text, -- space-separated list
|
|
primary key (drvPath, outputName),
|
|
foreign key (outputPath) references ValidPaths(id) on delete cascade
|
|
);
|