1
0
Fork 0
mirror of https://github.com/dani-garcia/vaultwarden.git synced 2025-06-20 10:20:08 +00:00

Improvements and error handling

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

View file

@ -0,0 +1,8 @@
DROP TABLE IF EXISTS sso_nonce;
CREATE TABLE sso_nonce (
state TEXT NOT NULL PRIMARY KEY,
nonce TEXT NOT NULL,
redirect_uri TEXT NOT NULL,
created_at TIMESTAMP NOT NULL DEFAULT now()
);