linstrom/migrations/postgres/2023-12-29-193430_create_people/up.sql
mStar aka a person 4732b00085 Lots of stuffs
Primarely setup stuffs for diesel
TODO: Add switch in src/storage/mod.rs for sqlite/postgres
2023-12-31 22:50:58 +00:00

7 lines
No EOL
133 B
SQL

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