diff options
Diffstat (limited to 'sqitch/deploy')
-rw-r--r-- | sqitch/deploy/git_repositories_add_fetch_with_authentication_field.sql | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/sqitch/deploy/git_repositories_add_fetch_with_authentication_field.sql b/sqitch/deploy/git_repositories_add_fetch_with_authentication_field.sql new file mode 100644 index 0000000..6734899 --- /dev/null +++ b/sqitch/deploy/git_repositories_add_fetch_with_authentication_field.sql @@ -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; |