guix-data-service/sqitch/revert/license_support.sql
Christopher Baines 16799a34a9 Store license information for packages
And display this on the package page.

This uses a couple of new tables, and an additional field in the
package_metadata table.

Currently, the order of the licenses in the package definition isn't stored,
as I'm not sure the order in the list is significant.
2019-05-15 08:05:14 +01:00

9 lines
117 B
PL/PgSQL

-- Revert guix-data-service:license_support from pg
BEGIN;
DROP TABLE licenses;
DROP TABLE license_sets;
COMMIT;