db/migrations/010_thread.sql
Orion Kindel c9995b30f8
init
2023-06-08 15:44:06 -05:00

6 lines
159 B
SQL

create table public.thread
( id int not null generated always as identity
, uid uuid not null default gen_random_uuid()
, kind thread_kind not null
);