···11+create table drafts (
22+did text not null references actors (did),
33+draft_id text not null, -- draft_id is an rkey
44+55+device_id text,
66+device_name text,
77+88+posts jsonb not null,
99+languages text [],
1010+postgate_embedding_rules text [],
1111+threadgate_allow text [],
1212+threadgate_allowed_lists text [],
1313+1414+created_at timestamptz not null default now (),
1515+updated_at timestamptz not null default now (),
1616+1717+primary key (did, draft_id)
1818+) ;