PMCORE-573
This commit is contained in:
@@ -73,7 +73,7 @@ class StepTriggerMapBuilder
|
||||
|
||||
$tMap->addPrimaryKey('ST_TYPE', 'StType', 'string', CreoleTypes::VARCHAR, true, 20);
|
||||
|
||||
$tMap->addColumn('ST_CONDITION', 'StCondition', 'string', CreoleTypes::VARCHAR, true, 255);
|
||||
$tMap->addColumn('ST_CONDITION', 'StCondition', 'string', CreoleTypes::LONGVARCHAR, true, null);
|
||||
|
||||
$tMap->addColumn('ST_POSITION', 'StPosition', 'int', CreoleTypes::INTEGER, true, null);
|
||||
|
||||
|
||||
@@ -55,7 +55,7 @@ abstract class BaseStepTrigger extends BaseObject implements Persistent
|
||||
* The value for the st_condition field.
|
||||
* @var string
|
||||
*/
|
||||
protected $st_condition = '';
|
||||
protected $st_condition;
|
||||
|
||||
/**
|
||||
* The value for the st_position field.
|
||||
@@ -246,7 +246,7 @@ abstract class BaseStepTrigger extends BaseObject implements Persistent
|
||||
$v = (string) $v;
|
||||
}
|
||||
|
||||
if ($this->st_condition !== $v || $v === '') {
|
||||
if ($this->st_condition !== $v) {
|
||||
$this->st_condition = $v;
|
||||
$this->modifiedColumns[] = StepTriggerPeer::ST_CONDITION;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user