octopod/migrations/revert/add_detailed_failures.sql
iko 6c6a4dce2c Added more detailed errors (#31)
* Added more failure statuses

* Added documentation
2021-07-16 15:56:18 +03:00

10 lines
192 B
PL/PgSQL

-- Revert octopod:add_detailed_failures from pg
BEGIN;
ALTER TYPE statuses RENAME VALUE 'GenericFailure' TO 'Failure';
-- NOTE: not a full revert. Removing enum values is a pain.
COMMIT;