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

BEGIN;

CREATE TABLE build_results (
       build_id TEXT PRIMARY KEY NOT NULL REFERENCES builds (uuid),
       agent_id TEXT NOT NULL REFERENCES agents (id),
       result TEXT NOT NULL,
       failure_reason
);

COMMIT;