summaryrefslogtreecommitdiffstats
path: root/migrations/2020-06-23-134455_create_users/up.sql
blob: 1f472d294eede2b9501995d06e15ec9dcc6edc66 (plain) (blame)
1
2
3
4
5
6
7
CREATE TABLE users (
    id SERIAL NOT NULL PRIMARY KEY,
    power_level INTEGER NOT NULL DEFAULT 0,
    name VARCHAR(32) UNIQUE NOT NULL,
    created timestamp NOT NULL DEFAULT current_timestamp(),
    hash CHAR(120) BINARY NOT NULL
);