This is an automated email from the git hooks/post-receive script.

cbaines pushed a commit to branch master
in repository data-service.

The following commit(s) were added to refs/heads/master by this push:
     new 916b594  Make nar_urls file sizes optional
916b594 is described below

commit 916b594473f2f776fbe745d77203df8152d57ee9
Author: Christopher Baines <m...@cbaines.net>
AuthorDate: Wed Jun 3 06:56:59 2020 +0100

    Make nar_urls file sizes optional
---
 guix-data-service/model/nar.scm                    | 2 +-
 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 +++++++
 5 files changed, 23 insertions(+), 1 deletion(-)

diff --git a/guix-data-service/model/nar.scm b/guix-data-service/model/nar.scm
index 7fa151b..a0be879 100644
--- a/guix-data-service/model/nar.scm
+++ b/guix-data-service/model/nar.scm
@@ -101,7 +101,7 @@ VALUES "
                        (quote-string
                         (uri->string uri))
                        (quote-string compression)
-                       file-size))
+                       (or file-size "NULL")))
                     (narinfo-uris narinfo)
                     (narinfo-compressions narinfo)
                     (narinfo-file-sizes narinfo)))
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 <mail
 load_new_guix_revision_jobs_make_commits_unique 2020-03-27T21:38:42Z 
Christopher Baines <m...@cbaines.net> # Make load_new_guix_revision_jobs 
commits unique
 remove_odd_package_derivations 2020-04-24T20:36:06Z Christopher Baines 
<m...@cbaines.net> # Remove odd package derivations
 build_servers_lookup_builds 2020-05-24T15:18:09Z Christopher Baines 
<m...@cbaines.net> # Add build_servers.lookup_builds
+make_nar_urls_file_size_optional 2020-06-03T05:27:29Z Christopher Baines 
<m...@cbaines.net> # 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;

Reply via email to