Add a table to configure which build servers build what

This commit is contained in:
Christopher Baines 2020-01-05 12:16:21 +00:00
parent c388f3ee13
commit 1679c985c4
4 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,12 @@
-- Deploy guix-data-service:build_servers_build_config to pg
BEGIN;
CREATE TABLE build_servers_build_config (
build_server_id integer REFERENCES build_servers(id),
system varchar NOT NULL,
target varchar NOT NULL,
PRIMARY KEY (build_server_id, system, target)
);
COMMIT;