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
|
@ -46,7 +46,7 @@ class CcBlockTableMap extends TableMap
|
|||
$this->addForeignKey('creator_id', 'DbCreatorId', 'INTEGER', 'cc_subjs', 'id', false, null, null);
|
||||
$this->addColumn('description', 'DbDescription', 'VARCHAR', false, 512, null);
|
||||
$this->addColumn('length', 'DbLength', 'VARCHAR', false, null, '00:00:00');
|
||||
$this->addColumn('type', 'DbType', 'VARCHAR', false, 7, 'static');
|
||||
$this->addColumn('type', 'DbType', 'VARCHAR', false, 7, 'dynamic');
|
||||
// validators
|
||||
} // initialize()
|
||||
|
||||
|
|
|
@ -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