1
0
Fork 0
mirror of https://github.com/dani-garcia/vaultwarden.git synced 2025-08-19 01:05:25 +00:00

Improvements and error handling

This commit is contained in:
Timshel 2024-09-12 15:18:39 +02:00
commit fefa55cad4
69 changed files with 2744 additions and 627 deletions

View file

@ -0,0 +1 @@
DROP TABLE IF EXISTS sso_users;

View file

@ -0,0 +1,7 @@
CREATE TABLE sso_users (
user_uuid CHAR(36) NOT NULL PRIMARY KEY,
identifier TEXT NOT NULL UNIQUE,
created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
FOREIGN KEY(user_uuid) REFERENCES users(uuid)
);