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