You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
synctv/migrations/20260426008_create_auth_tok...

8 lines
243 B
SQL

CREATE TABLE IF NOT EXISTS auth_token_blacklist (
jti TEXT PRIMARY KEY,
expires_at TIMESTAMPTZ NOT NULL,
family_revoked_at BIGINT
);
CREATE INDEX IF NOT EXISTS idx_auth_token_blacklist_expires ON auth_token_blacklist(expires_at);