init auth-service

This commit is contained in:
2023-09-27 16:01:41 +01:00
parent 7192f11059
commit 0ae3ee3af4
40 changed files with 2616 additions and 2 deletions

View File

@@ -0,0 +1 @@
DROP TABLE IF EXISTS auth_methods CASCADE;

View File

@@ -0,0 +1,4 @@
CREATE TABLE auth_methods (
"user_id" varchar(64) PRIMARY KEY,
"password" varchar(128) NOT NULL
);