~starkingdoms/starkingdoms

ref: ba85890681851529852179ae46a5134a8ba0b3a2 starkingdoms/starkingdoms-backplane/migrations/2023-11-30-013338_create_table_users/up.sql -rw-r--r-- 167 bytes
ba858906 — core store the token on the client 2 years 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
);