Files
softplayer-backend/migrations/20260510174348_tokens_init.up.sql
Nikolai Rodionov 33f48f2bfb
All checks were successful
ci/woodpecker/push/build Pipeline was successful
A lot of thigs are going on
Signed-off-by: Nikolai Rodionov <allanger@badhouseplants.net>
2026-05-10 23:14:29 +02:00

11 lines
283 B
SQL

CREATE TABLE IF NOT EXISTS tokens (
uuid UUID PRIMARY KEY,
token_hash TEXT NOT NULL,
user_id UUID NOT NULL,
scopes JSONB NOT NULL DEFAULT '[]',
created_at TIMESTAMPTZ NOT NULL DEFAULT now(),
last_used_at TIMESTAMPTZ,
revoked_at TIMESTAMPTZ,
expires_at TIMESTAMPTZ
);