diff options
author | Christopher Baines <mail@cbaines.net> | 2019-09-01 13:35:23 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2019-09-01 18:32:09 +0100 |
commit | 91a9ba43498ffcd6149854eaa6b071d8b16e4cf3 (patch) | |
tree | 000af25a1d8d6b866d846e4c3461010febf66f73 /sqitch | |
parent | c1fad22cd1767b8f64c66a1bd2f47ecf387a992a (diff) | |
download | data-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')
-rw-r--r-- | sqitch/deploy/guix_revision_lint_checkers.sql | 11 | ||||
-rw-r--r-- | sqitch/revert/guix_revision_lint_checkers.sql | 7 | ||||
-rw-r--r-- | sqitch/sqitch.plan | 1 | ||||
-rw-r--r-- | sqitch/verify/guix_revision_lint_checkers.sql | 7 |
4 files changed, 26 insertions, 0 deletions
diff --git a/sqitch/deploy/guix_revision_lint_checkers.sql b/sqitch/deploy/guix_revision_lint_checkers.sql new file mode 100644 index 0000000..21c5a79 --- /dev/null +++ b/sqitch/deploy/guix_revision_lint_checkers.sql @@ -0,0 +1,11 @@ +-- Deploy guix-data-service:guix_revision_lint_checkers to pg + +BEGIN; + +CREATE TABLE guix_revision_lint_checkers ( + lint_checker_id integer NOT NULL REFERENCES lint_checkers (id), + guix_revision_id integer NOT NULL REFERENCES guix_revisions (id), + PRIMARY KEY (lint_checker_id, guix_revision_id) +); + +COMMIT; 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; diff --git a/sqitch/sqitch.plan b/sqitch/sqitch.plan index fb234ae..b0b145b 100644 --- a/sqitch/sqitch.plan +++ b/sqitch/sqitch.plan @@ -19,3 +19,4 @@ fix_duplicated_licenses 2019-07-30T05:48:17Z Christopher Baines <mail@cbaines.ne change_git_branches_primary_key 2019-08-05T18:57:41Z Christopher Baines <mail@cbaines.net> # Change the git_branches primary key to include the git_repository_id,\nas this will allow having the same branch in different repositories. remove_duplicate_load_new_guix_revision_jobs 2019-08-05T19:06:36Z Christopher Baines <mail@cbaines.net> # Remove duplicate load_new_guix_revision_jobs lint_warnings 2019-08-18T17:10:12Z Christopher Baines <mail@cbaines.net> # Store lint warnings +guix_revision_lint_checkers 2019-09-01T12:17:38Z chris <chris@phact> # Associate lint_checkers to guix_revisions diff --git a/sqitch/verify/guix_revision_lint_checkers.sql b/sqitch/verify/guix_revision_lint_checkers.sql new file mode 100644 index 0000000..637f4be --- /dev/null +++ b/sqitch/verify/guix_revision_lint_checkers.sql @@ -0,0 +1,7 @@ +-- Verify guix-data-service:guix_revision_lint_checkers on pg + +BEGIN; + +-- XXX Add verifications here. + +ROLLBACK; |