Files
filebot-media-browser/sql/002_add_cover_url.sql
T
HousemannandClaude Sonnet 4.6 3f253ffe81 Initial commit: Filebot Media Browser
Vue 3 + FastAPI Webapp zur Anzeige von Filebot/n8n-Medienmetadaten aus PostgreSQL.
Enthält Frontend, API, Nginx-Config, SQL-Migrationen und Docker-Compose-Setup.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-07-11 05:38:37 +02:00

7 lines
226 B
SQL

-- Optional: falls cover_url noch nicht existiert
ALTER TABLE n8n.movie_files
ADD COLUMN IF NOT EXISTS cover_url TEXT NULL;
COMMENT ON COLUMN n8n.movie_files.cover_url IS
'Poster/Cover-URL (z.B. TVMaze medium_portrait)';