1
0
Fork 0
mirror of https://github.com/dani-garcia/vaultwarden.git synced 2025-06-21 10:50:08 +00:00
vaultwarden/migrations/mysql/2024-02-14-170000_add_state_to_sso_nonce/down.sql
2025-01-09 17:01:28 +01:00

6 lines
180 B
SQL

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