13 lines
No EOL
304 B
SQL
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
|
|
) |