This commit is contained in:
Andrea Adamczyk
2019-08-13 09:39:04 -04:00
parent 2c618e68b1
commit ba32d7ca69
6 changed files with 289 additions and 130 deletions

View File

@@ -79,7 +79,7 @@ abstract class BaseProcess extends BaseObject implements Persistent
* The value for the pro_status_id field.
* @var int
*/
protected $pro_status_id = 0;
protected $pro_status_id = 1;
/**
* The value for the pro_type_day field.
@@ -999,7 +999,7 @@ abstract class BaseProcess extends BaseObject implements Persistent
$v = (int) $v;
}
if ($this->pro_status_id !== $v || $v === 0) {
if ($this->pro_status_id !== $v || $v === 1) {
$this->pro_status_id = $v;
$this->modifiedColumns[] = ProcessPeer::PRO_STATUS_ID;
}