chore: added model delete related to #2

This commit is contained in:
2023-09-21 15:38:02 +01:00
parent af62db6ad1
commit b8278bacf6
21 changed files with 1264 additions and 185 deletions

View File

@@ -1,8 +1,9 @@
-- drop table if exists tokens;
-- drop table if exists models;
-- drop table if exists users;
create table if not exists users (
id uuid primary key default gen_random_uuid(),
user_type integer default 0,
user_type integer default 1,
username varchar (120) not null,
email varchar (120) not null,
salt char (8) not null,