guix-data-service/sqitch/revert/guix_revision_lint_checkers.sql
Christopher Baines 91a9ba4349 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.
2019-09-01 18:32:09 +01:00

7 lines
122 B
PL/PgSQL

-- Revert guix-data-service:guix_revision_lint_checkers from pg
BEGIN;
DROP TABLE guix_revision_lint_checkers;
COMMIT;