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.
9 lines
117 B
PL/PgSQL
9 lines
117 B
PL/PgSQL
-- Revert guix-data-service:license_support from pg
|
|
|
|
BEGIN;
|
|
|
|
DROP TABLE licenses;
|
|
|
|
DROP TABLE license_sets;
|
|
|
|
COMMIT;
|