Lowercases type keywords in the abs_sessions CREATE TABLE body to match neighboring migrations, fixes the client_version column alignment, and replaces the misleading "parallel to jellycompat_sessions" header comment with a more accurate description of the table's role. Cosmetic only — the running schema is unchanged. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
27 lines
1002 B
SQL
27 lines
1002 B
SQL
-- Audiobookshelf-compatible client sessions. Same role as
|
|
-- jellycompat_sessions (compat-layer token store) but with a proper
|
|
-- users FK, device metadata, and soft revocation via revoked_at instead
|
|
-- of hard expiry.
|
|
|
|
CREATE TABLE IF NOT EXISTS public.abs_sessions (
|
|
id bigserial PRIMARY KEY,
|
|
user_id integer NOT NULL REFERENCES public.users(id) ON DELETE CASCADE,
|
|
token text NOT NULL,
|
|
device_id text NOT NULL,
|
|
device_name text,
|
|
client_name text,
|
|
client_version text,
|
|
created_at timestamp with time zone NOT NULL DEFAULT now(),
|
|
last_seen_at timestamp with time zone NOT NULL DEFAULT now(),
|
|
revoked_at timestamp with time zone
|
|
);
|
|
|
|
CREATE UNIQUE INDEX IF NOT EXISTS idx_abs_sessions_token
|
|
ON public.abs_sessions (token);
|
|
|
|
CREATE INDEX IF NOT EXISTS idx_abs_sessions_user_device
|
|
ON public.abs_sessions (user_id, device_id);
|
|
|
|
CREATE INDEX IF NOT EXISTS idx_abs_sessions_last_seen
|
|
ON public.abs_sessions (last_seen_at);
|