Support storing the id's representing builds in other services

Like Cuirass, or the Guix Data Service. This isn't so necessary with Cuirass,
as the derivation/output are unique identifiers, but for the Guix Build
Coordinator, one derivation/output can be built many times, with potentially
differing results.
This commit is contained in:
Christopher Baines 2020-06-27 13:58:21 +01:00
parent 1d48885e6a
commit ddbe4c2192
4 changed files with 22 additions and 0 deletions

View file

@ -0,0 +1,7 @@
-- Deploy guix-data-service:build_add_build_server_build_id to pg
BEGIN;
ALTER TABLE builds ADD COLUMN build_server_build_id varchar;
COMMIT;