Files
silo-server/migrations/041_jellyfin_history_import.up.sql
T

6 lines
255 B
SQL

-- Expand run source_type to allow 'jellyfin'
ALTER TABLE history_import_runs
DROP CONSTRAINT history_import_runs_source_type_check,
ADD CONSTRAINT history_import_runs_source_type_check
CHECK (source_type IN ('emby', 'jellyfin', 'plex'));