mirror of
https://github.com/dani-garcia/vaultwarden.git
synced 2025-12-09 00:56:40 -05:00
13 lines
425 B
SQL
13 lines
425 B
SQL
DROP TABLE IF EXISTS sso_nonce;
|
|
|
|
CREATE TABLE sso_auth (
|
|
state TEXT NOT NULL PRIMARY KEY,
|
|
client_challenge TEXT NOT NULL,
|
|
nonce TEXT NOT NULL,
|
|
redirect_uri TEXT NOT NULL,
|
|
code_response TEXT,
|
|
auth_response TEXT,
|
|
created_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|
updated_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP
|
|
);
|