octopod/migrations/revert/rename_elements_of_scope_enum.sql

9 lines
197 B
MySQL
Raw Normal View History

2020-12-09 16:20:24 +03:00
-- Revert octopod:rename_elements_of_scope_enum from pg
BEGIN;
ALTER TYPE scopes RENAME VALUE 'ApplicationScope' to 'App';
ALTER TYPE scopes RENAME VALUE 'DeploymentScope' to 'Staging';
COMMIT;