modified schema definition to include episode title
This commit is contained in:
parent
e773887736
commit
0a2de69fbb
10 changed files with 225 additions and 26 deletions
|
@ -45,6 +45,8 @@ class PodcastEpisodesTableMap extends TableMap
|
|||
$this->addColumn('publication_date', 'DbPublicationDate', 'TIMESTAMP', true, null, null);
|
||||
$this->addColumn('download_url', 'DbDownloadUrl', 'VARCHAR', true, 4096, null);
|
||||
$this->addColumn('episode_guid', 'DbEpisodeGuid', 'VARCHAR', true, 4096, null);
|
||||
$this->addColumn('episode_title', 'DbEpisodeTitle', 'VARCHAR', true, 4096, null);
|
||||
$this->addColumn('episode_description', 'DbEpisodeDescription', 'VARCHAR', true, 4096, null);
|
||||
// validators
|
||||
} // initialize()
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue