Support storing whether to authenticate commits by git repository

To allow using the Guix Data Service when commits aren't authenticated.
This commit is contained in:
Christopher Baines 2020-10-07 18:50:13 +01:00
parent 888d9fcb98
commit 9f9c23010e
6 changed files with 30 additions and 4 deletions

View file

@ -0,0 +1,8 @@
-- Deploy guix-data-service:git_repositories_add_fetch_with_authentication_field to pg
BEGIN;
ALTER TABLE git_repositories
ADD COLUMN fetch_with_authentication boolean NOT NULL DEFAULT TRUE;
COMMIT;