~starkingdoms/starkingdoms

ref: 0f5e9b77ea7f7245f41e52f5f88c68e9ab63fadc starkingdoms/starkingdoms-backplane/migrations/2023-11-30-013338_create_table_users/up.sql -rw-r--r-- 167 bytes
0f5e9b77 — ghostlyzsh module refactor attachment portion done 1 year, 11 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
);