guix-data-service/sqitch/deploy/git_repositories_query_substitutes.sql
Christopher Baines ad39492cf0 Support per repository configuration for fetching substitutes
This is so that data.qa.guix.gnu.org can be configured only to query the
branches from the main repository.
2022-09-09 12:39:38 +01:00

8 lines
178 B
PL/PgSQL

-- Deploy guix-data-service:git_repositories_query_substitutes to pg
BEGIN;
ALTER TABLE git_repositories
ADD COLUMN query_substitutes boolean NOT NULL DEFAULT TRUE;
COMMIT;