use switch to ruma and remove unneeded code
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2022-06-26 21:07:11 +02:00
parent 71590d6c60
commit 29093c51e3
31 changed files with 222 additions and 631 deletions

View File

@@ -3,7 +3,7 @@ CREATE TABLE users(
uuid TEXT PRIMARY KEY NOT NULL,
user_id CHAR(255) NOT NULL,
display_name TEXT NOT NULL,
password TEXT NOT NULL
password_hash TEXT NOT NULL
);
CREATE INDEX user_id_index ON users (user_id);