modified schema definition to include episode title

This commit is contained in:
Robbt 2019-01-12 23:48:19 -05:00
parent e773887736
commit 0a2de69fbb
10 changed files with 225 additions and 26 deletions

View file

@ -55,7 +55,7 @@ abstract class BaseCcBlockcontents 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;
@ -136,7 +136,7 @@ abstract class BaseCcBlockcontents extends BaseObject implements Persistent
*/
public function applyDefaultValues()
{
$this->trackoffset = 0;
$this->trackoffset = 0.0;
$this->cliplength = '00:00:00';
$this->cuein = '00:00:00';
$this->cueout = '00:00:00';
@ -548,7 +548,7 @@ abstract class BaseCcBlockcontents extends BaseObject implements Persistent
*/
public function hasOnlyDefaultValues()
{
if ($this->trackoffset !== 0) {
if ($this->trackoffset !== 0.0) {
return false;
}