HOR-1496 "Al ejecutar build-model aparecen varias clases afectadas" SOLVED
Issue:
Al ejecutar build-model aparecen varias clases afectadas
Cause:
Al ejecutar "./gulliver propel-build-model" aparecen varias clases afectadas
Solution:
- Se actualizan los files PHP
- Se a implementado el atributo "referenceOnly" para el file "schema.xml"
This commit is contained in:
@@ -85,7 +85,7 @@ abstract class BaseTimerEvent extends BaseObject implements Persistent
|
||||
* The value for the tmrevn_configuration_data field.
|
||||
* @var string
|
||||
*/
|
||||
protected $tmrevn_configuration_data = '';
|
||||
protected $tmrevn_configuration_data;
|
||||
|
||||
/**
|
||||
* The value for the tmrevn_next_run_date field.
|
||||
@@ -611,7 +611,7 @@ abstract class BaseTimerEvent extends BaseObject implements Persistent
|
||||
$v = (string) $v;
|
||||
}
|
||||
|
||||
if ($this->tmrevn_configuration_data !== $v || $v === '') {
|
||||
if ($this->tmrevn_configuration_data !== $v) {
|
||||
$this->tmrevn_configuration_data = $v;
|
||||
$this->modifiedColumns[] = TimerEventPeer::TMREVN_CONFIGURATION_DATA;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user