From 16799a34a96bfa240b3eb47d75c935afab8c51a1 Mon Sep 17 00:00:00 2001 From: Christopher Baines Date: Wed, 15 May 2019 08:05:14 +0100 Subject: 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. --- sqitch/revert/license_support.sql | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 sqitch/revert/license_support.sql (limited to 'sqitch/revert/license_support.sql') diff --git a/sqitch/revert/license_support.sql b/sqitch/revert/license_support.sql new file mode 100644 index 0000000..703bf2f --- /dev/null +++ b/sqitch/revert/license_support.sql @@ -0,0 +1,9 @@ +-- Revert guix-data-service:license_support from pg + +BEGIN; + +DROP TABLE licenses; + +DROP TABLE license_sets; + +COMMIT; -- cgit v1.2.3