aboutsummaryrefslogtreecommitdiff
path: root/sqitch/revert/guix_revision_lint_checkers.sql
diff options
context:
space:
mode:
authorChristopher Baines <mail@cbaines.net>2019-09-01 13:35:23 +0100
committerChristopher Baines <mail@cbaines.net>2019-09-01 18:32:09 +0100
commit91a9ba43498ffcd6149854eaa6b071d8b16e4cf3 (patch)
tree000af25a1d8d6b866d846e4c3461010febf66f73 /sqitch/revert/guix_revision_lint_checkers.sql
parentc1fad22cd1767b8f64c66a1bd2f47ecf387a992a (diff)
downloaddata-service-91a9ba43498ffcd6149854eaa6b071d8b16e4cf3.tar
data-service-91a9ba43498ffcd6149854eaa6b071d8b16e4cf3.tar.gz
Add a new table guix_revision_lint_checkers
To associate a set of lint checkers with a specific revision. While there is the association through the lint warnings, that only works for checkers where there are lint warnings for that revision. Therefore, to allow finding all the checkers for a specific revision, also associate them directly with the revision.
Diffstat (limited to 'sqitch/revert/guix_revision_lint_checkers.sql')
-rw-r--r--sqitch/revert/guix_revision_lint_checkers.sql7
1 files changed, 7 insertions, 0 deletions
diff --git a/sqitch/revert/guix_revision_lint_checkers.sql b/sqitch/revert/guix_revision_lint_checkers.sql
new file mode 100644
index 0000000..3cdee33
--- /dev/null
+++ b/sqitch/revert/guix_revision_lint_checkers.sql
@@ -0,0 +1,7 @@
+-- Revert guix-data-service:guix_revision_lint_checkers from pg
+
+BEGIN;
+
+DROP TABLE guix_revision_lint_checkers;
+
+COMMIT;