From 916b594473f2f776fbe745d77203df8152d57ee9 Mon Sep 17 00:00:00 2001 From: Christopher Baines Date: Wed, 3 Jun 2020 06:56:59 +0100 Subject: Make nar_urls file sizes optional --- sqitch/deploy/make_nar_urls_file_size_optional.sql | 7 +++++++ sqitch/revert/make_nar_urls_file_size_optional.sql | 7 +++++++ sqitch/sqitch.plan | 1 + sqitch/verify/make_nar_urls_file_size_optional.sql | 7 +++++++ 4 files changed, 22 insertions(+) create mode 100644 sqitch/deploy/make_nar_urls_file_size_optional.sql create mode 100644 sqitch/revert/make_nar_urls_file_size_optional.sql create mode 100644 sqitch/verify/make_nar_urls_file_size_optional.sql (limited to 'sqitch') diff --git a/sqitch/deploy/make_nar_urls_file_size_optional.sql b/sqitch/deploy/make_nar_urls_file_size_optional.sql new file mode 100644 index 0000000..e2f7d31 --- /dev/null +++ b/sqitch/deploy/make_nar_urls_file_size_optional.sql @@ -0,0 +1,7 @@ +-- Deploy guix-data-service:make_nar_urls_file_size_optional to pg + +BEGIN; + +ALTER TABLE nar_urls ALTER COLUMN file_size DROP NOT NULL; + +COMMIT; diff --git a/sqitch/revert/make_nar_urls_file_size_optional.sql b/sqitch/revert/make_nar_urls_file_size_optional.sql new file mode 100644 index 0000000..4859b1e --- /dev/null +++ b/sqitch/revert/make_nar_urls_file_size_optional.sql @@ -0,0 +1,7 @@ +-- Revert guix-data-service:make_nar_urls_file_size_optional from pg + +BEGIN; + +-- XXX Add DDLs here. + +COMMIT; diff --git a/sqitch/sqitch.plan b/sqitch/sqitch.plan index 6e73371..cb57737 100644 --- a/sqitch/sqitch.plan +++ b/sqitch/sqitch.plan @@ -58,3 +58,4 @@ create_narinfo_fetch_records_index 2020-03-25T19:07:28Z Christopher Baines # Make load_new_guix_revision_jobs commits unique remove_odd_package_derivations 2020-04-24T20:36:06Z Christopher Baines # Remove odd package derivations build_servers_lookup_builds 2020-05-24T15:18:09Z Christopher Baines # Add build_servers.lookup_builds +make_nar_urls_file_size_optional 2020-06-03T05:27:29Z Christopher Baines # Make the nar_urls.file_size optional diff --git a/sqitch/verify/make_nar_urls_file_size_optional.sql b/sqitch/verify/make_nar_urls_file_size_optional.sql new file mode 100644 index 0000000..8253cb5 --- /dev/null +++ b/sqitch/verify/make_nar_urls_file_size_optional.sql @@ -0,0 +1,7 @@ +-- Verify guix-data-service:make_nar_urls_file_size_optional on pg + +BEGIN; + +-- XXX Add verifications here. + +ROLLBACK; -- cgit v1.2.3