aboutsummaryrefslogtreecommitdiff
path: root/sqitch/deploy/build_status_nullable_timestamp.sql
diff options
context:
space:
mode:
Diffstat (limited to 'sqitch/deploy/build_status_nullable_timestamp.sql')
-rw-r--r--sqitch/deploy/build_status_nullable_timestamp.sql7
1 files changed, 7 insertions, 0 deletions
diff --git a/sqitch/deploy/build_status_nullable_timestamp.sql b/sqitch/deploy/build_status_nullable_timestamp.sql
new file mode 100644
index 0000000..3474cac
--- /dev/null
+++ b/sqitch/deploy/build_status_nullable_timestamp.sql
@@ -0,0 +1,7 @@
+-- Deploy guix-data-service:build_status_nullable_timestamp to pg
+
+BEGIN;
+
+ALTER TABLE build_status ALTER COLUMN timestamp DROP NOT NULl;
+
+COMMIT;