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

@@ -55,7 +55,7 @@ abstract class BaseAppAssignSelfServiceValue extends BaseObject implements Persi
* The value for the grp_uid field.
* @var string
*/
protected $grp_uid = '';
protected $grp_uid;
/**
* Flag to prevent endless save loop, if this object is referenced
@@ -229,7 +229,7 @@ abstract class BaseAppAssignSelfServiceValue extends BaseObject implements Persi
$v = (string) $v;
}
if ($this->grp_uid !== $v || $v === '') {
if ($this->grp_uid !== $v) {
$this->grp_uid = $v;
$this->modifiedColumns[] = AppAssignSelfServiceValuePeer::GRP_UID;
}