website/migrations/users/up.sql

9 lines
200 B
MySQL
Raw Normal View History

2024-03-30 00:52:46 +00:00
CREATE TABLE IF NOT EXISTS Users (
id UUID NOT NULL UNIQUE,
email TEXT NOT NULL,
username TEXT NOT NULL,
pw_hash TEXT NOT NULL,
permissions BIGINT NOT NULL,
PRIMARY KEY (id)
)