mirror of
https://github.com/dani-garcia/vaultwarden.git
synced 2025-06-24 03:52:50 +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
|
|
);
|