Support excluding and including branches from a repository

So that you can have the Guix Data Service only pay attention to some of the
branches.
This commit is contained in:
Christopher Baines 2020-02-08 12:03:41 +00:00
parent bb271c366b
commit c31c9575e0
6 changed files with 70 additions and 15 deletions

View file

@ -0,0 +1,8 @@
-- Deploy guix-data-service:allow_including_and_excluding_branches_for_repositories to pg
BEGIN;
ALTER TABLE git_repositories ADD COLUMN included_branches varchar[];
ALTER TABLE git_repositories ADD COLUMN excluded_branches varchar[];
COMMIT;