Jak usunąć wartość typu wyliczenia, którą utworzyłem w postgresql?
create type admin_level1 as enum('classifier', 'moderator', 'god');
Np. Chcę usunąć moderator
z listy.
Nie mogę znaleźć niczego w dokumentach.
Używam Postgresql 9.3.4.
create xxx
drop xxx
drop type admin_level1
?