* SAAS-1084 - initial work on publishing API backend
* More work on automatic ingest * Add automatic_ingest_timestamp column to ImportedPodcast
This commit is contained in:
parent
3a791ef9b5
commit
0b1df6baf3
27 changed files with 490 additions and 106 deletions
|
@ -598,6 +598,7 @@
|
|||
<table name="imported_podcast" phpName="ImportedPodcast">
|
||||
<column name="id" phpName="DbId" required="true" primaryKey="true" autoIncrement="true" type="INTEGER"/>
|
||||
<column name="auto_ingest" phpName="DbAutoIngest" type="BOOLEAN" required="true" defaultValue="false"/>
|
||||
<column name="auto_ingest_timestamp" phpName="DbAutoIngestTimestamp" type="TIMESTAMP" required="false" />
|
||||
<column name="podcast_id" phpName="DbPodcastId" required="true" type="INTEGER"/>
|
||||
<foreign-key foreignTable="podcast" name="podcast_id_fkey" onDelete="CASCADE">
|
||||
<reference local="podcast_id" foreign="id" />
|
||||
|
|
|
@ -756,6 +756,7 @@ CREATE TABLE "imported_podcast"
|
|||
(
|
||||
"id" serial NOT NULL,
|
||||
"auto_ingest" BOOLEAN DEFAULT 'f' NOT NULL,
|
||||
"auto_ingest_timestamp" TIMESTAMP,
|
||||
"podcast_id" INTEGER NOT NULL,
|
||||
PRIMARY KEY ("id")
|
||||
);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue