create table video (
id integer ...,
type вот здесь мне нужно указать, что type может быть только "FILM" или "SERIAL"
);
CREATE TYPE contenttype AS ENUM ('FILM', 'SERIAL', 'TRAILER');
CREATE TYPE mood AS ENUM ('sad', 'ok', 'happy');
CREATE TABLE person (
name text,
current_mood mood
);
INSERT INTO person VALUES ('Moe', 'happy');
SELECT * FROM person WHERE current_mood = 'happy';
name | current_mood
------+--------------
Moe | happy
(1 row)