1
0
Fork 0
mirror of https://github.com/dani-garcia/vaultwarden.git synced 2025-05-16 08:33:57 +00:00
vaultwarden/migrations/sqlite/2024-02-14-170000_add_state_to_sso_nonce/down.sql
2025-01-09 17:01:28 +01:00

6 lines
170 B
SQL

DROP TABLE sso_nonce;
CREATE TABLE sso_nonce (
nonce CHAR(36) NOT NULL PRIMARY KEY,
created_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP
);