init project, impl authorization

This commit is contained in:
2022-06-06 14:17:58 +05:00
commit ec73d6584f
26 changed files with 2680 additions and 0 deletions

View File

@ -0,0 +1,9 @@
-- Add migration script here
CREATE TABLE account
(
id uuid primary key,
username varchar(128) unique not null,
password_hash bytea not null,
password_salt varchar(32) not null,
email text null
);