~starkingdoms/starkingdoms

ref: 830d0b9543b30e419d6b00d66a9bfdc2411524ae starkingdoms/crates/backplane/migrations/2023-11-30-013338_create_table_users/up.sql -rw-r--r-- 167 bytes
830d0b95 — ghostly_zsh mostly working chatbox and inputs to egui windows no longer go to the game 8 months ago
                                                                                
1
2
3
4
5
6
CREATE TABLE users (
    id BIGINT NOT NULL PRIMARY KEY,
    username VARCHAR NOT NULL UNIQUE,
    password_hash VARCHAR NOT NULL,
    permission_level INT NOT NULL
);