mirror of
https://github.com/dani-garcia/vaultwarden.git
synced 2025-05-17 17:13:56 +00:00
4 lines
147 B
SQL
4 lines
147 B
SQL
CREATE TABLE sso_nonce (
|
|
nonce CHAR(36) NOT NULL PRIMARY KEY,
|
|
created_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP
|
|
);
|