6 lines
81 B
SQL
6 lines
81 B
SQL
create type public.thread_kind as enum
|
|
( 'post'
|
|
, 'short'
|
|
, 'message'
|
|
);
|