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:
Victor Saisa Lopez
2016-08-05 12:35:21 -04:00
parent 5afd993262
commit 65a9c6f6fe
11 changed files with 58 additions and 46 deletions

View File

@@ -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;
}