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,7 @@
-- Revert guix-data-service:package_derivations_by_guix_revision_range from pg
BEGIN;
DROP TABLE package_derivations_by_guix_revision_range;
COMMIT;