mirror of https://github.com/authelia/authelia.git
9 lines
319 B
SQL
9 lines
319 B
SQL
CREATE TABLE IF NOT EXISTS totp_history (
|
|
id SERIAL CONSTRAINT totp_history_pkey PRIMARY KEY,
|
|
created_at TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|
username VARCHAR(100) NOT NULL,
|
|
step CHAR(64) NOT NULL
|
|
);
|
|
|
|
CREATE UNIQUE INDEX totp_history_lookup_key ON totp_history (username, step);
|