Add album_override field for imported_podcasts

This commit is contained in:
Lucas Bickel 2017-03-17 11:52:03 +01:00
parent 033e816015
commit a2eb4b2297
6 changed files with 128 additions and 19 deletions

View file

@ -760,6 +760,7 @@ CREATE TABLE "imported_podcast"
"id" serial NOT NULL,
"auto_ingest" BOOLEAN DEFAULT 'f' NOT NULL,
"auto_ingest_timestamp" TIMESTAMP,
"album_override" BOOLEAN DEFAULT 'f' NOT NULL,
"podcast_id" INTEGER NOT NULL,
PRIMARY KEY ("id")
);