cuepoints analyzer disabled by default

This commit is contained in:
jo 2023-02-11 00:44:44 +01:00 committed by Kyle Robbertze
parent f5e46c6f3d
commit 87de25052a
7 changed files with 10 additions and 9 deletions

View file

@ -44,7 +44,7 @@ class CcTracktypesTableMap extends TableMap
$this->addColumn('visibility', 'DbVisibility', 'BOOLEAN', true, null, true);
$this->addColumn('type_name', 'DbTypeName', 'VARCHAR', true, 64, '');
$this->addColumn('description', 'DbDescription', 'VARCHAR', true, 255, '');
$this->addColumn('analyze_cue_points', 'DbAnalyzeCuePoints', 'BOOLEAN', true, null, true);
$this->addColumn('analyze_cue_points', 'DbAnalyzeCuePoints', 'BOOLEAN', true, null, false);
// validators
} // initialize()

View file

@ -65,7 +65,7 @@ abstract class BaseCcTracktypes extends BaseObject implements Persistent
/**
* The value for the analyze_cue_points field.
* Note: this column has a database default value of: true
* Note: this column has a database default value of: false
* @var boolean
*/
protected $analyze_cue_points;
@ -114,7 +114,7 @@ abstract class BaseCcTracktypes extends BaseObject implements Persistent
$this->visibility = true;
$this->type_name = '';
$this->description = '';
$this->analyze_cue_points = true;
$this->analyze_cue_points = false;
}
/**
@ -361,7 +361,7 @@ abstract class BaseCcTracktypes extends BaseObject implements Persistent
return false;
}
if ($this->analyze_cue_points !== true) {
if ($this->analyze_cue_points !== false) {
return false;
}