websocket-chat/migrations/0001_user_table.sql
2023-10-30 13:20:09 -04:00

8 lines
188 B
SQL

create table users (
-- id INT NOT NULL AUTO_INCREMENT,
username VARCHAR NOT NULL UNIQUE,
password TEXT NOT NULL,
admin BOOLEAN NOT NULL DEFAULT FALSE,
PRIMARY KEY (username)
);