2020-10-20 13:14:02 +00:00
|
|
|
-- 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,
|
2021-03-08 10:56:33 +00:00
|
|
|
signatures text, -- space-separated list
|
2020-10-20 13:14:02 +00:00
|
|
|
primary key (drvPath, outputName),
|
|
|
|
foreign key (outputPath) references ValidPaths(id) on delete cascade
|
|
|
|
);
|