This commit is contained in:
Paula Quispe
2017-06-19 16:50:52 -04:00
parent 1a41cf0537
commit 8e7fc0ee7a
18 changed files with 120 additions and 120 deletions

View File

@@ -67,19 +67,19 @@ abstract class BaseListPaused extends BaseObject implements Persistent
* The value for the app_title field.
* @var string
*/
protected $app_title = '';
protected $app_title;
/**
* The value for the app_pro_title field.
* @var string
*/
protected $app_pro_title = '';
protected $app_pro_title;
/**
* The value for the app_tas_title field.
* @var string
*/
protected $app_tas_title = '';
protected $app_tas_title;
/**
* The value for the app_paused_date field.
@@ -718,7 +718,7 @@ abstract class BaseListPaused extends BaseObject implements Persistent
$v = (string) $v;
}
if ($this->app_title !== $v || $v === '') {
if ($this->app_title !== $v) {
$this->app_title = $v;
$this->modifiedColumns[] = ListPausedPeer::APP_TITLE;
}
@@ -740,7 +740,7 @@ abstract class BaseListPaused extends BaseObject implements Persistent
$v = (string) $v;
}
if ($this->app_pro_title !== $v || $v === '') {
if ($this->app_pro_title !== $v) {
$this->app_pro_title = $v;
$this->modifiedColumns[] = ListPausedPeer::APP_PRO_TITLE;
}
@@ -762,7 +762,7 @@ abstract class BaseListPaused extends BaseObject implements Persistent
$v = (string) $v;
}
if ($this->app_tas_title !== $v || $v === '') {
if ($this->app_tas_title !== $v) {
$this->app_tas_title = $v;
$this->modifiedColumns[] = ListPausedPeer::APP_TAS_TITLE;
}