linstrom/migrations/2023-12-29-193430_create_people/up.sql
2024-01-06 21:16:37 +00:00

13 lines
No EOL
304 B
SQL

create table people (
ap_id text primary key,
name text not null,
instance text,
mail text,
pw_hash text,
inbox text not null,
public_key text not null,
private_key text,
last_refreshed_at timestamp not null,
local boolean not null,
followers text[] not null
)