guix-data-service/sqitch/deploy/buildstatus_enum.sql
Christopher Baines d69f77d59e Add some initial Sqitch migrations
These are based on the state of the current manually managed database.
2019-04-14 10:06:13 +01:00

18 lines
308 B
PL/PgSQL

-- Deploy guix-data-service:buildstatus_enum to pg
-- requires: appschema
BEGIN;
SET client_min_messages = 'warning';
CREATE TYPE guix_data_service.buildstatus AS ENUM (
'scheduled',
'started',
'succeeded',
'failed',
'failed-dependency',
'failed-other',
'canceled'
);
COMMIT;