aboutsummaryrefslogtreecommitdiff
path: root/sqitch/verify
diff options
context:
space:
mode:
Diffstat (limited to 'sqitch/verify')
-rw-r--r--sqitch/verify/git_repositories.sql8
1 files changed, 8 insertions, 0 deletions
diff --git a/sqitch/verify/git_repositories.sql b/sqitch/verify/git_repositories.sql
new file mode 100644
index 0000000..b01ef94
--- /dev/null
+++ b/sqitch/verify/git_repositories.sql
@@ -0,0 +1,8 @@
+-- Verify guix-data-service:git_repositories on pg
+
+BEGIN;
+
+SELECT id, label, url
+ FROM git_repositories WHERE FALSE;
+
+ROLLBACK;