blob: 65d5423fe49c2761d32ea7ec906ee683786a924a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
-- Deploy guix-build-coordinator:derivation_output_details to sqlite
BEGIN;
CREATE TABLE derivation_output_details (
derivation_output_id INTEGER PRIMARY KEY ASC,
hash_algorithm TEXT,
hash TEXT,
recursive BOOLEAN NOT NULL
);
COMMIT;
|