I am trying to add new type value to my existing types in PostgreSQL. But I get the following error
error: ALTER TYPE ... ADD cannot run inside a transact
You can change your query to
COMMIT; ALTER TYPE public.request_type ADD VALUE "Check";