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