Files
silo-server/migrations/128_media_items_show_status.up.sql
T

7 lines
348 B
SQL

-- show_status captures the series lifecycle ("returning", "ended", "cancelled",
-- "in_production") sourced from metadata providers. Empty string when unknown
-- or not applicable (movies). Used by the card overlay system to render a
-- Show Status badge on series cards.
ALTER TABLE media_items
ADD COLUMN show_status TEXT NOT NULL DEFAULT '';