1
0
Fork 1
Spiegel von https://github.com/dani-garcia/vaultwarden.git synchronisiert 2024-09-17 20:11:12 +02:00
vaultwarden/migrations/postgresql/2024-02-14-170000_add_state_to_sso_nonce/down.sql
2024-06-25 18:57:32 +02:00

6 Zeilen
159 B
SQL

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