Mike92988
11/19/2021, 5:10 PMScott P
11/19/2021, 5:20 PMsql
CREATE TYPE mood AS ENUM ('sad', 'ok', 'happy')
Once you've done that, you'll be able to add or edit a column type via the dashboard to use this typeMike92988
11/20/2021, 12:48 AMScott P
11/20/2021, 9:25 PMpublic
schema, any table within that schema will be able to have a column with the enum type you create.Mike92988
11/21/2021, 12:19 AM