planetwars.dev/planetwars-server/migrations/2021-12-13-145111_users/up.sql

8 lines
213 B
MySQL
Raw Normal View History

CREATE TABLE users(
id SERIAL PRIMARY KEY,
username VARCHAR(52) NOT NULL,
password_salt BYTEA NOT NULL,
password_hash BYTEA NOT NULL
2021-12-14 19:23:07 +00:00
);
CREATE UNIQUE INDEX users_username_index ON users(username);