Add a new table to describe the history of derivations

There's already the package_versions_by_guix_revision_range table, but I think
it would be also useful to be able to see how derivations change over time.
This commit is contained in:
Christopher Baines 2019-11-09 19:59:55 +00:00
parent fea4dc9385
commit 1442d17a3d
5 changed files with 103 additions and 1 deletions

View file

@ -0,0 +1,17 @@
-- Deploy guix-data-service:package_derivations_by_guix_revision_range to pg
BEGIN;
CREATE TABLE package_derivations_by_guix_revision_range (
git_repository_id integer NOT NULL REFERENCES git_repositories (id),
branch_name varchar NOT NULL,
package_name varchar NOT NULL,
package_version varchar NOT NULL,
derivation_id integer NOT NULL,
system varchar NOT NULL,
target varchar NOT NULL,
first_guix_revision_id integer NOT NULL REFERENCES guix_revisions (id),
last_guix_revision_id integer NOT NULL REFERENCES guix_revisions (id)
);
COMMIT;