Microservice to bring 2FA to self hosted PDSes
1-- Add migration script here
2CREATE TABLE IF NOT EXISTS gate_codes
3(
4 code VARCHAR PRIMARY KEY,
5 handle VARCHAR NOT NULL,
6 created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP
7);
8
9-- Index on created_at for efficient cleanup of expired codes
10CREATE INDEX IF NOT EXISTS idx_gate_codes_created_at ON gate_codes(created_at);