mirror of
https://github.com/dani-garcia/vaultwarden.git
synced 2025-07-25 21:40:40 +00:00
4 lines
136 B
SQL
4 lines
136 B
SQL
CREATE TABLE sso_nonce (
|
|
nonce CHAR(36) NOT NULL PRIMARY KEY,
|
|
created_at TIMESTAMP NOT NULL DEFAULT now()
|
|
);
|