guix-data-service/sqitch/revert/package_derivations_by_guix_revision_range.sql
Christopher Baines 1442d17a3d 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.
2019-11-09 19:59:55 +00:00

7 lines
152 B
PL/PgSQL

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