The previous constraint of NOT NULL made it impossible to create a placeholder entry for later downloading. This uses a 0 default instead of the constraint and downloading as well as the green checkbox work again.
3 lines
219 B
SQL
3 lines
219 B
SQL
ALTER TABLE imported_podcast DROP COLUMN IF EXISTS album_override;
|
|
ALTER TABLE third_party_track_references ALTER COLUMN file_id DROP DEFAULT;
|
|
ALTER TABLE third_party_track_references ALTER COLUMN file_id SET NOT NULL;
|