ibs/schema.sql
HeshamTB 2c17903012
init: server workds with tls, needs database models
Signed-off-by: HeshamTB <hishaminv@gmail.com>
2022-03-03 14:42:02 +03:00

9 lines
234 B
SQL

CREATE TABLE user_accounts(
user_id UNSIGHNED INT PRIMARY KEY NOT NULL,
username NCHAR(64) NOT NULL,
email NCHAR(64) NOT NULL,
date_created DATETIME,
digest NCHAR(512) NOT NULL,
salt NCHAR(64) NOT NULL
);