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

7 lines
133 B
MySQL
Raw Normal View History

CREATE TABLE people (
id STRING primary key,
name STRING not null,
instance STRING,
mail STRING,
pw_hash STRING
)