mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-09-01 18:58:56 +00:00
8 lines
494 B
SQL
Executable File
8 lines
494 B
SQL
Executable File
# Note: This patch adds the column hascover to tvrage_titles
|
|
# It will be 0 by default. This is by design. Once you
|
|
# run /misc/testing/PostProcess/exportTVcovers.php the column
|
|
# will be set to 1 if you have a valid image for that series
|
|
# A follow on patch will be issued to remove imgdata. Obviously
|
|
# it cannot be done until the user runs the extract script
|
|
|
|
ALTER TABLE tvrage_titles ADD COLUMN hascover TINYINT(1) NOT NULL DEFAULT 0 COMMENT 'Does series have cover art?' AFTER imgdata; |