From 7341d1725420b431160536c1cf2b34a662ff0a86 Mon Sep 17 00:00:00 2001 From: Christopher Baines Date: Mon, 13 May 2019 21:02:53 +0100 Subject: Store and display the location of packages Store the location a package can be found at, and display this on the package page. If available, link off to the git repository containing the package. --- sqitch/revert/add_git_repositories_cgit_url_base.sql | 7 +++++++ sqitch/revert/add_location_information.sql | 7 +++++++ 2 files changed, 14 insertions(+) create mode 100644 sqitch/revert/add_git_repositories_cgit_url_base.sql create mode 100644 sqitch/revert/add_location_information.sql (limited to 'sqitch/revert') diff --git a/sqitch/revert/add_git_repositories_cgit_url_base.sql b/sqitch/revert/add_git_repositories_cgit_url_base.sql new file mode 100644 index 0000000..67c5a87 --- /dev/null +++ b/sqitch/revert/add_git_repositories_cgit_url_base.sql @@ -0,0 +1,7 @@ +-- Revert guix-data-service:add_git_repositories_cgit_url_base from pg + +BEGIN; + +ALTER TABLE git_repositories DROP COLUMN cgit_url_base; + +COMMIT; diff --git a/sqitch/revert/add_location_information.sql b/sqitch/revert/add_location_information.sql new file mode 100644 index 0000000..31220ed --- /dev/null +++ b/sqitch/revert/add_location_information.sql @@ -0,0 +1,7 @@ +-- Revert guix-data-service:add_location_information from pg + +BEGIN; + +-- XXX Add DDLs here. + +COMMIT; -- cgit v1.2.3