linstrom/migrations/sqlite/2023-12-31-223546_create_people/up.sql

9 lines
177 B
MySQL
Raw Normal View History

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