diff options
author | Christopher Baines <mail@cbaines.net> | 2020-06-27 13:35:34 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2020-06-27 14:05:51 +0100 |
commit | 1d48885e6a4c245e3a65185f1768b40b5a47e883 (patch) | |
tree | 73fafb49e54eeeb35647ed5e514975547355c483 /sqitch/revert | |
parent | d687928a04307ef9bdd9d811197aeba377bcfa01 (diff) | |
download | data-service-1d48885e6a4c245e3a65185f1768b40b5a47e883.tar data-service-1d48885e6a4c245e3a65185f1768b40b5a47e883.tar.gz |
Make build_status.timestamp nullable
The Guix Build Coordinator doesn't record timestamps for events
currently. This is something to fix, but allow for build statuses without
timestamps as they're not necessary.
Diffstat (limited to 'sqitch/revert')
-rw-r--r-- | sqitch/revert/build_status_nullable_timestamp.sql | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sqitch/revert/build_status_nullable_timestamp.sql b/sqitch/revert/build_status_nullable_timestamp.sql new file mode 100644 index 0000000..28125fd --- /dev/null +++ b/sqitch/revert/build_status_nullable_timestamp.sql @@ -0,0 +1,7 @@ +-- Revert guix-data-service:build_status_nullable_timestamp from pg + +BEGIN; + +-- XXX Add DDLs here. + +COMMIT; |