aboutsummaryrefslogtreecommitdiff
path: root/sqitch/sqlite/deploy/output_metadata.sql
blob: a7c01241d03b081c4a8419c7c87ec9784a6c5e62 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
-- Deploy guix-build-coordinator:output_metadata to sqlite

BEGIN;

CREATE TABLE output_metadata (
       build_id TEXT NOT NULL REFERENCES builds (uuid),
       derivation_output_id INTEGER NOT NULL REFERENCES derivation_outputs (id),
       hash TEXT NOT NULL,
       size INTEGER NOT NULL,
       store_references TEXT NOT NULL
);

COMMIT;