view schema/updates/1433/01.add_state.sql @ 5361:ce1fe22bda5a extented-report

Backed out changeset f845c3b7b68e
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Tue, 22 Jun 2021 17:12:17 +0200
parents 38491057807b
children
line wrap: on
line source

-- DROP and re-CREATE type because adding a value isn't possible in transaction
-- https://www.postgresql.org/docs/11/sql-altertype.html#id-1.9.3.42.7

ALTER TABLE import.imports
    ALTER COLUMN state DROP DEFAULT,
    ALTER COLUMN state TYPE varchar;

DROP TYPE import_state;

CREATE TYPE import_state AS ENUM (
    'queued',
    'running',
    'failed', 'unchanged', 'pending',
    'accepted', 'declined', 'reviewed'
);

ALTER TABLE import.imports
    ALTER COLUMN state TYPE import_state USING CAST(state AS import_state),
    ALTER COLUMN state SET DEFAULT 'queued';