···152152153153 CREATE INDEX IF NOT EXISTS idx_playlist_songs_pl ON playlist_songs(playlist_id);
154154155155+ -- ── Internet radio ──────────────────────────────────────────────────
156156+ -- User-managed list of external stream URLs surfaced through the
157157+ -- Subsonic getInternetRadioStations family. `homepage_url` is optional.
158158+ CREATE TABLE IF NOT EXISTS internet_radio_stations (
159159+ id TEXT PRIMARY KEY,
160160+ name TEXT NOT NULL,
161161+ stream_url TEXT NOT NULL,
162162+ homepage_url TEXT,
163163+ created_at TEXT NOT NULL
164164+ );
165165+155166 -- ── Videos ──────────────────────────────────────────────────────────
156167 CREATE TABLE IF NOT EXISTS videos (
157168 id TEXT PRIMARY KEY,