modified schema definition to include episode title

This commit is contained in:
Robbt 2019-01-12 23:48:19 -05:00
parent e773887736
commit 0a2de69fbb
10 changed files with 225 additions and 26 deletions

View file

@ -780,6 +780,8 @@ CREATE TABLE "podcast_episodes"
"publication_date" TIMESTAMP NOT NULL,
"download_url" VARCHAR(4096) NOT NULL,
"episode_guid" VARCHAR(4096) NOT NULL,
"episode_title" VARCHAR(4096) NOT NULL,
"episode_description" VARCHAR(4096) NOT NULL,
PRIMARY KEY ("id")
);