SAAS-1080: Station podcast feed
This commit is contained in:
parent
30d742af92
commit
14104a93ae
14 changed files with 347 additions and 316 deletions
|
@ -565,6 +565,7 @@
|
|||
|
||||
<table name="podcast" phpName="Podcast">
|
||||
<column name="id" phpName="DbId" primaryKey="true" type="INTEGER" autoIncrement="true" required="true" />
|
||||
<column name="url" phpName="DbUrl" type="VARCHAR" size="4096" required="true" />
|
||||
<column name="title" phpName="DbTitle" type="VARCHAR" size="4096" required="true" />
|
||||
<column name="creator" phpName="DbCreator" type="VARCHAR" size="4096" />
|
||||
<column name="description" phpName="DbDescription" type="VARCHAR" size="4096" />
|
||||
|
@ -596,7 +597,6 @@
|
|||
|
||||
<table name="imported_podcast" phpName="ImportedPodcast">
|
||||
<column name="id" phpName="DbId" required="true" primaryKey="true" autoIncrement="true" type="INTEGER"/>
|
||||
<column name="url" phpName="DbUrl" type="VARCHAR" size="4096" required="true" />
|
||||
<column name="auto_ingest" phpName="DbAutoIngest" type="BOOLEAN" required="true" defaultValue="false"/>
|
||||
<column name="podcast_id" phpName="DbPodcastId" required="true" type="INTEGER"/>
|
||||
<foreign-key foreignTable="podcast" name="podcast_id_fkey" onDelete="CASCADE">
|
||||
|
|
|
@ -716,6 +716,7 @@ DROP TABLE IF EXISTS "podcast" CASCADE;
|
|||
CREATE TABLE "podcast"
|
||||
(
|
||||
"id" serial NOT NULL,
|
||||
"url" VARCHAR(4096) NOT NULL,
|
||||
"title" VARCHAR(4096) NOT NULL,
|
||||
"creator" VARCHAR(4096),
|
||||
"description" VARCHAR(4096),
|
||||
|
@ -754,7 +755,6 @@ DROP TABLE IF EXISTS "imported_podcast" CASCADE;
|
|||
CREATE TABLE "imported_podcast"
|
||||
(
|
||||
"id" serial NOT NULL,
|
||||
"url" VARCHAR(4096) NOT NULL,
|
||||
"auto_ingest" BOOLEAN DEFAULT 'f' NOT NULL,
|
||||
"podcast_id" INTEGER NOT NULL,
|
||||
PRIMARY KEY ("id")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue