guix-data-service/sqitch/deploy/build_status_nullable_timestamp.sql
Christopher Baines 1d48885e6a 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.
2020-06-27 14:05:51 +01:00

7 lines
147 B
PL/PgSQL

-- Deploy guix-data-service:build_status_nullable_timestamp to pg
BEGIN;
ALTER TABLE build_status ALTER COLUMN timestamp DROP NOT NULl;
COMMIT;