Added extra fields to podcast table

This commit is contained in:
drigato 2015-09-24 10:32:16 -04:00
parent 07b63abfe1
commit c587dcf4e4
7 changed files with 832 additions and 44 deletions

View file

@ -720,6 +720,14 @@ CREATE TABLE "podcast"
"title" VARCHAR(4096) NOT NULL,
"creator" VARCHAR(4096),
"description" VARCHAR(4096),
"language" VARCHAR(4096),
"copyright" VARCHAR(4096),
"itunes_author" VARCHAR(4096),
"itunes_keywords" VARCHAR(4096),
"itunes_summary" VARCHAR(4096),
"itunes_subtitle" VARCHAR(4096),
"itunes_category" VARCHAR(4096),
"itunes_explicit" VARCHAR(4096),
"auto_ingest" BOOLEAN DEFAULT 'f' NOT NULL,
"owner" INTEGER,
"type" INTEGER DEFAULT 1 NOT NULL,