aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Baines <mail@cbaines.net>2019-12-05 14:09:28 +0100
committerChristopher Baines <mail@cbaines.net>2019-12-12 20:07:22 +0000
commit5168b38c2a50e39e74c04b616ff6f962363130c0 (patch)
tree3dd8dec56dae27e0e8090ddad68d3678eb5d1720
parentd2405f6c77bd0b19b913d7d8c76c6cdc3e347e82 (diff)
downloaddata-service-5168b38c2a50e39e74c04b616ff6f962363130c0.tar
data-service-5168b38c2a50e39e74c04b616ff6f962363130c0.tar.gz
Change nars size to bigint
As some nars can be bigger than the maximum size of an int.
-rw-r--r--sqitch/deploy/change_nars_size_to_bigint.sql7
-rw-r--r--sqitch/revert/change_nars_size_to_bigint.sql7
-rw-r--r--sqitch/sqitch.plan1
-rw-r--r--sqitch/verify/change_nars_size_to_bigint.sql7
4 files changed, 22 insertions, 0 deletions
diff --git a/sqitch/deploy/change_nars_size_to_bigint.sql b/sqitch/deploy/change_nars_size_to_bigint.sql
new file mode 100644
index 0000000..cc94352
--- /dev/null
+++ b/sqitch/deploy/change_nars_size_to_bigint.sql
@@ -0,0 +1,7 @@
+-- Deploy guix-data-service:change_nars_size_to_bigint to pg
+
+BEGIN;
+
+ALTER TABLE nars ALTER COLUMN size TYPE bigint USING size::bigint;
+
+COMMIT;
diff --git a/sqitch/revert/change_nars_size_to_bigint.sql b/sqitch/revert/change_nars_size_to_bigint.sql
new file mode 100644
index 0000000..d6c1296
--- /dev/null
+++ b/sqitch/revert/change_nars_size_to_bigint.sql
@@ -0,0 +1,7 @@
+-- Revert guix-data-service:change_nars_size_to_bigint from pg
+
+BEGIN;
+
+-- XXX Add DDLs here.
+
+COMMIT;
diff --git a/sqitch/sqitch.plan b/sqitch/sqitch.plan
index 3b16f94..603f5a7 100644
--- a/sqitch/sqitch.plan
+++ b/sqitch/sqitch.plan
@@ -32,3 +32,4 @@ rework_builds 2019-11-23T20:41:20Z Christopher Baines <mail@cbaines.net> # Rewor
nar_related_tables 2019-11-29T20:28:19Z Christopher Baines <mail@cbaines.net> # Add nar related tables
add_index_on_builds_derivation_file_name 2019-12-03T16:23:55Z <chris@phact> # Add index on builds_derivation_file_name
narinfo_fetch_record 2019-12-03T20:53:28Z <chris@phact> # Add a table to describe fetching a narinfo
+change_nars_size_to_bigint 2019-12-04T21:24:21Z <chris@phact> # Change nars.size to bigint
diff --git a/sqitch/verify/change_nars_size_to_bigint.sql b/sqitch/verify/change_nars_size_to_bigint.sql
new file mode 100644
index 0000000..fa199b4
--- /dev/null
+++ b/sqitch/verify/change_nars_size_to_bigint.sql
@@ -0,0 +1,7 @@
+-- Verify guix-data-service:change_nars_size_to_bigint on pg
+
+BEGIN;
+
+-- XXX Add verifications here.
+
+ROLLBACK;