linstrom/migrations/postgres/2023-12-29-193430_create_people/up.sql

8 lines
145 B
MySQL
Raw Normal View History

CREATE TABLE people (
2024-01-01 13:38:13 +00:00
id TEXT primary key,
name TEXT not null,
instance TEXT,
mail TEXT,
pw_hash TEXT,
is_local BOOLEAN
)