aboutsummaryrefslogtreecommitdiff
path: root/sqitch/deploy/git_repositories_add_fetch_with_authentication_field.sql
blob: 6734899e233e4fb618072d3df69ed1528010808f (plain)
1
2
3
4
5
6
7
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;