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
|
@ -74,7 +74,7 @@ abstract class BaseCcPlaylistcontents extends BaseObject implements Persistent
|
|||
|
||||
/**
|
||||
* The value for the trackoffset field.
|
||||
* Note: this column has a database default value of: 0
|
||||
* Note: this column has a database default value of: 0.0
|
||||
* @var double
|
||||
*/
|
||||
protected $trackoffset;
|
||||
|
@ -161,7 +161,7 @@ abstract class BaseCcPlaylistcontents extends BaseObject implements Persistent
|
|||
public function applyDefaultValues()
|
||||
{
|
||||
$this->type = 0;
|
||||
$this->trackoffset = 0;
|
||||
$this->trackoffset = 0.0;
|
||||
$this->cliplength = '00:00:00';
|
||||
$this->cuein = '00:00:00';
|
||||
$this->cueout = '00:00:00';
|
||||
|
@ -677,7 +677,7 @@ abstract class BaseCcPlaylistcontents extends BaseObject implements Persistent
|
|||
return false;
|
||||
}
|
||||
|
||||
if ($this->trackoffset !== 0) {
|
||||
if ($this->trackoffset !== 0.0) {
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue