mirror of
https://github.com/typeable/octopod.git
synced 2024-11-27 05:53:34 +03:00
9 lines
140 B
PL/PgSQL
9 lines
140 B
PL/PgSQL
-- Revert octopod:rename-delete-to-archive from pg
|
|
BEGIN;
|
|
|
|
|
|
ALTER TYPE statuses RENAME VALUE 'ArchivePending' TO 'DeletePending';
|
|
|
|
|
|
COMMIT;
|