10 lines
479 B
SQL
10 lines
479 B
SQL
-- Optional expiry for bot API tokens. NULL = never expires (the prior
|
|
-- behaviour, preserved for all existing rows). When set, `find_active`
|
|
-- rejects the token past this instant, mirroring the sessions table's
|
|
-- `expires_at > now()` gate.
|
|
ALTER TABLE api_tokens ADD COLUMN expires_at TIMESTAMPTZ;
|
|
|
|
-- Partial index to keep the active-token lookup cheap once expiries exist.
|
|
CREATE INDEX api_tokens_expires_at_idx ON api_tokens (expires_at)
|
|
WHERE expires_at IS NOT NULL;
|