This is to allow for build servers where only the substitutes should be queried, and it shouldn't be assumed that they're running Cuirass.
7 lines
162 B
PL/PgSQL
7 lines
162 B
PL/PgSQL
-- Deploy guix-data-service:build_servers_lookup_builds to pg
|
|
|
|
BEGIN;
|
|
|
|
ALTER TABLE build_servers ADD COLUMN lookup_builds boolean NOT NULL DEFAULT TRUE;
|
|
|
|
COMMIT;
|