BUG FIX - A Event field had a blank space instead a underscore in the schema.xml

This commit is contained in:
Erik Amaru Ortiz
2013-12-05 20:38:09 -04:00
parent 6852c78133
commit ae2759579f
5 changed files with 56 additions and 56 deletions

View File

@@ -83,9 +83,9 @@ class BpmnEventMapBuilder
$tMap->addColumn('EVN_CANCEL_ACTIVITY', 'EvnCancelActivity', 'int', CreoleTypes::TINYINT, false, null); $tMap->addColumn('EVN_CANCEL_ACTIVITY', 'EvnCancelActivity', 'int', CreoleTypes::TINYINT, false, null);
$tMap->addColumn('EVN_ACTIVITY REF', 'EvnActivity ref', 'string', CreoleTypes::VARCHAR, false, 32); $tMap->addColumn('EVN_ACTIVITY_REF', 'EvnActivityRef', 'string', CreoleTypes::VARCHAR, false, 32);
$tMap->addColumn('EVN_WAIT_FOR COMPLETION', 'EvnWaitFor completion', 'int', CreoleTypes::TINYINT, false, null); $tMap->addColumn('EVN_WAIT_FOR_COMPLETION', 'EvnWaitForCompletion', 'int', CreoleTypes::TINYINT, false, null);
$tMap->addColumn('EVN_ERROR_NAME', 'EvnErrorName', 'string', CreoleTypes::VARCHAR, false, 255); $tMap->addColumn('EVN_ERROR_NAME', 'EvnErrorName', 'string', CreoleTypes::VARCHAR, false, 255);

View File

@@ -82,16 +82,16 @@ abstract class BaseBpmnEvent extends BaseObject implements Persistent
protected $evn_cancel_activity = 0; protected $evn_cancel_activity = 0;
/** /**
* The value for the evn_activity ref field. * The value for the evn_activity_ref field.
* @var string * @var string
*/ */
protected $evn_activity ref = ''; protected $evn_activity_ref = '';
/** /**
* The value for the evn_wait_for completion field. * The value for the evn_wait_for_completion field.
* @var int * @var int
*/ */
protected $evn_wait_for completion = 1; protected $evn_wait_for_completion = 1;
/** /**
* The value for the evn_error_name field. * The value for the evn_error_name field.
@@ -289,25 +289,25 @@ abstract class BaseBpmnEvent extends BaseObject implements Persistent
} }
/** /**
* Get the [evn_activity ref] column value. * Get the [evn_activity_ref] column value.
* *
* @return string * @return string
*/ */
public function getEvnActivity ref() public function getEvnActivityRef()
{ {
return $this->evn_activity ref; return $this->evn_activity_ref;
} }
/** /**
* Get the [evn_wait_for completion] column value. * Get the [evn_wait_for_completion] column value.
* *
* @return int * @return int
*/ */
public function getEvnWaitFor completion() public function getEvnWaitForCompletion()
{ {
return $this->evn_wait_for completion; return $this->evn_wait_for_completion;
} }
/** /**
@@ -649,12 +649,12 @@ abstract class BaseBpmnEvent extends BaseObject implements Persistent
} // setEvnCancelActivity() } // setEvnCancelActivity()
/** /**
* Set the value of [evn_activity ref] column. * Set the value of [evn_activity_ref] column.
* *
* @param string $v new value * @param string $v new value
* @return void * @return void
*/ */
public function setEvnActivity ref($v) public function setEvnActivityRef($v)
{ {
// Since the native PHP type for this column is string, // Since the native PHP type for this column is string,
@@ -663,20 +663,20 @@ abstract class BaseBpmnEvent extends BaseObject implements Persistent
$v = (string) $v; $v = (string) $v;
} }
if ($this->evn_activity ref !== $v || $v === '') { if ($this->evn_activity_ref !== $v || $v === '') {
$this->evn_activity ref = $v; $this->evn_activity_ref = $v;
$this->modifiedColumns[] = BpmnEventPeer::EVN_ACTIVITY REF; $this->modifiedColumns[] = BpmnEventPeer::EVN_ACTIVITY_REF;
} }
} // setEvnActivity ref() } // setEvnActivityRef()
/** /**
* Set the value of [evn_wait_for completion] column. * Set the value of [evn_wait_for_completion] column.
* *
* @param int $v new value * @param int $v new value
* @return void * @return void
*/ */
public function setEvnWaitFor completion($v) public function setEvnWaitForCompletion($v)
{ {
// Since the native PHP type for this column is integer, // Since the native PHP type for this column is integer,
@@ -685,12 +685,12 @@ abstract class BaseBpmnEvent extends BaseObject implements Persistent
$v = (int) $v; $v = (int) $v;
} }
if ($this->evn_wait_for completion !== $v || $v === 1) { if ($this->evn_wait_for_completion !== $v || $v === 1) {
$this->evn_wait_for completion = $v; $this->evn_wait_for_completion = $v;
$this->modifiedColumns[] = BpmnEventPeer::EVN_WAIT_FOR COMPLETION; $this->modifiedColumns[] = BpmnEventPeer::EVN_WAIT_FOR_COMPLETION;
} }
} // setEvnWaitFor completion() } // setEvnWaitForCompletion()
/** /**
* Set the value of [evn_error_name] column. * Set the value of [evn_error_name] column.
@@ -991,9 +991,9 @@ abstract class BaseBpmnEvent extends BaseObject implements Persistent
$this->evn_cancel_activity = $rs->getInt($startcol + 8); $this->evn_cancel_activity = $rs->getInt($startcol + 8);
$this->evn_activity ref = $rs->getString($startcol + 9); $this->evn_activity_ref = $rs->getString($startcol + 9);
$this->evn_wait_for completion = $rs->getInt($startcol + 10); $this->evn_wait_for_completion = $rs->getInt($startcol + 10);
$this->evn_error_name = $rs->getString($startcol + 11); $this->evn_error_name = $rs->getString($startcol + 11);
@@ -1294,10 +1294,10 @@ abstract class BaseBpmnEvent extends BaseObject implements Persistent
return $this->getEvnCancelActivity(); return $this->getEvnCancelActivity();
break; break;
case 9: case 9:
return $this->getEvnActivity ref(); return $this->getEvnActivityRef();
break; break;
case 10: case 10:
return $this->getEvnWaitFor completion(); return $this->getEvnWaitForCompletion();
break; break;
case 11: case 11:
return $this->getEvnErrorName(); return $this->getEvnErrorName();
@@ -1364,8 +1364,8 @@ abstract class BaseBpmnEvent extends BaseObject implements Persistent
$keys[6] => $this->getEvnIsInterrupting(), $keys[6] => $this->getEvnIsInterrupting(),
$keys[7] => $this->getEvnAttachedTo(), $keys[7] => $this->getEvnAttachedTo(),
$keys[8] => $this->getEvnCancelActivity(), $keys[8] => $this->getEvnCancelActivity(),
$keys[9] => $this->getEvnActivity ref(), $keys[9] => $this->getEvnActivityRef(),
$keys[10] => $this->getEvnWaitFor completion(), $keys[10] => $this->getEvnWaitForCompletion(),
$keys[11] => $this->getEvnErrorName(), $keys[11] => $this->getEvnErrorName(),
$keys[12] => $this->getEvnErrorCode(), $keys[12] => $this->getEvnErrorCode(),
$keys[13] => $this->getEvnEscalationName(), $keys[13] => $this->getEvnEscalationName(),
@@ -1437,10 +1437,10 @@ abstract class BaseBpmnEvent extends BaseObject implements Persistent
$this->setEvnCancelActivity($value); $this->setEvnCancelActivity($value);
break; break;
case 9: case 9:
$this->setEvnActivity ref($value); $this->setEvnActivityRef($value);
break; break;
case 10: case 10:
$this->setEvnWaitFor completion($value); $this->setEvnWaitForCompletion($value);
break; break;
case 11: case 11:
$this->setEvnErrorName($value); $this->setEvnErrorName($value);
@@ -1538,11 +1538,11 @@ abstract class BaseBpmnEvent extends BaseObject implements Persistent
} }
if (array_key_exists($keys[9], $arr)) { if (array_key_exists($keys[9], $arr)) {
$this->setEvnActivity ref($arr[$keys[9]]); $this->setEvnActivityRef($arr[$keys[9]]);
} }
if (array_key_exists($keys[10], $arr)) { if (array_key_exists($keys[10], $arr)) {
$this->setEvnWaitFor completion($arr[$keys[10]]); $this->setEvnWaitForCompletion($arr[$keys[10]]);
} }
if (array_key_exists($keys[11], $arr)) { if (array_key_exists($keys[11], $arr)) {
@@ -1640,12 +1640,12 @@ abstract class BaseBpmnEvent extends BaseObject implements Persistent
$criteria->add(BpmnEventPeer::EVN_CANCEL_ACTIVITY, $this->evn_cancel_activity); $criteria->add(BpmnEventPeer::EVN_CANCEL_ACTIVITY, $this->evn_cancel_activity);
} }
if ($this->isColumnModified(BpmnEventPeer::EVN_ACTIVITY REF)) { if ($this->isColumnModified(BpmnEventPeer::EVN_ACTIVITY_REF)) {
$criteria->add(BpmnEventPeer::EVN_ACTIVITY REF, $this->evn_activity ref); $criteria->add(BpmnEventPeer::EVN_ACTIVITY_REF, $this->evn_activity_ref);
} }
if ($this->isColumnModified(BpmnEventPeer::EVN_WAIT_FOR COMPLETION)) { if ($this->isColumnModified(BpmnEventPeer::EVN_WAIT_FOR_COMPLETION)) {
$criteria->add(BpmnEventPeer::EVN_WAIT_FOR COMPLETION, $this->evn_wait_for completion); $criteria->add(BpmnEventPeer::EVN_WAIT_FOR_COMPLETION, $this->evn_wait_for_completion);
} }
if ($this->isColumnModified(BpmnEventPeer::EVN_ERROR_NAME)) { if ($this->isColumnModified(BpmnEventPeer::EVN_ERROR_NAME)) {
@@ -1771,9 +1771,9 @@ abstract class BaseBpmnEvent extends BaseObject implements Persistent
$copyObj->setEvnCancelActivity($this->evn_cancel_activity); $copyObj->setEvnCancelActivity($this->evn_cancel_activity);
$copyObj->setEvnActivity ref($this->evn_activity ref); $copyObj->setEvnActivityRef($this->evn_activity_ref);
$copyObj->setEvnWaitFor completion($this->evn_wait_for completion); $copyObj->setEvnWaitForCompletion($this->evn_wait_for_completion);
$copyObj->setEvnErrorName($this->evn_error_name); $copyObj->setEvnErrorName($this->evn_error_name);

View File

@@ -58,11 +58,11 @@ abstract class BaseBpmnEventPeer
/** the column name for the EVN_CANCEL_ACTIVITY field */ /** the column name for the EVN_CANCEL_ACTIVITY field */
const EVN_CANCEL_ACTIVITY = 'BPMN_EVENT.EVN_CANCEL_ACTIVITY'; const EVN_CANCEL_ACTIVITY = 'BPMN_EVENT.EVN_CANCEL_ACTIVITY';
/** the column name for the EVN_ACTIVITY REF field */ /** the column name for the EVN_ACTIVITY_REF field */
const EVN_ACTIVITY REF = 'BPMN_EVENT.EVN_ACTIVITY REF'; const EVN_ACTIVITY_REF = 'BPMN_EVENT.EVN_ACTIVITY_REF';
/** the column name for the EVN_WAIT_FOR COMPLETION field */ /** the column name for the EVN_WAIT_FOR_COMPLETION field */
const EVN_WAIT_FOR COMPLETION = 'BPMN_EVENT.EVN_WAIT_FOR COMPLETION'; const EVN_WAIT_FOR_COMPLETION = 'BPMN_EVENT.EVN_WAIT_FOR_COMPLETION';
/** the column name for the EVN_ERROR_NAME field */ /** the column name for the EVN_ERROR_NAME field */
const EVN_ERROR_NAME = 'BPMN_EVENT.EVN_ERROR_NAME'; const EVN_ERROR_NAME = 'BPMN_EVENT.EVN_ERROR_NAME';
@@ -111,9 +111,9 @@ abstract class BaseBpmnEventPeer
* e.g. self::$fieldNames[self::TYPE_PHPNAME][0] = 'Id' * e.g. self::$fieldNames[self::TYPE_PHPNAME][0] = 'Id'
*/ */
private static $fieldNames = array ( private static $fieldNames = array (
BasePeer::TYPE_PHPNAME => array ('EvnUid', 'PrjUid', 'ProUid', 'EvnName', 'EvnType', 'EvnMarker', 'EvnIsInterrupting', 'EvnAttachedTo', 'EvnCancelActivity', 'EvnActivity ref', 'EvnWaitFor completion', 'EvnErrorName', 'EvnErrorCode', 'EvnEscalationName', 'EvnEscalationCode', 'EvnCondition', 'EvnMessage', 'EvnOprerationName', 'EvnOperationImplementationRef', 'EvnTimeDate', 'EvnTimeCycle', 'EvnTimeDuration', 'EvnBehavior', ), BasePeer::TYPE_PHPNAME => array ('EvnUid', 'PrjUid', 'ProUid', 'EvnName', 'EvnType', 'EvnMarker', 'EvnIsInterrupting', 'EvnAttachedTo', 'EvnCancelActivity', 'EvnActivityRef', 'EvnWaitForCompletion', 'EvnErrorName', 'EvnErrorCode', 'EvnEscalationName', 'EvnEscalationCode', 'EvnCondition', 'EvnMessage', 'EvnOprerationName', 'EvnOperationImplementationRef', 'EvnTimeDate', 'EvnTimeCycle', 'EvnTimeDuration', 'EvnBehavior', ),
BasePeer::TYPE_COLNAME => array (BpmnEventPeer::EVN_UID, BpmnEventPeer::PRJ_UID, BpmnEventPeer::PRO_UID, BpmnEventPeer::EVN_NAME, BpmnEventPeer::EVN_TYPE, BpmnEventPeer::EVN_MARKER, BpmnEventPeer::EVN_IS_INTERRUPTING, BpmnEventPeer::EVN_ATTACHED_TO, BpmnEventPeer::EVN_CANCEL_ACTIVITY, BpmnEventPeer::EVN_ACTIVITY REF, BpmnEventPeer::EVN_WAIT_FOR COMPLETION, BpmnEventPeer::EVN_ERROR_NAME, BpmnEventPeer::EVN_ERROR_CODE, BpmnEventPeer::EVN_ESCALATION_NAME, BpmnEventPeer::EVN_ESCALATION_CODE, BpmnEventPeer::EVN_CONDITION, BpmnEventPeer::EVN_MESSAGE, BpmnEventPeer::EVN_OPRERATION_NAME, BpmnEventPeer::EVN_OPERATION_IMPLEMENTATION_REF, BpmnEventPeer::EVN_TIME_DATE, BpmnEventPeer::EVN_TIME_CYCLE, BpmnEventPeer::EVN_TIME_DURATION, BpmnEventPeer::EVN_BEHAVIOR, ), BasePeer::TYPE_COLNAME => array (BpmnEventPeer::EVN_UID, BpmnEventPeer::PRJ_UID, BpmnEventPeer::PRO_UID, BpmnEventPeer::EVN_NAME, BpmnEventPeer::EVN_TYPE, BpmnEventPeer::EVN_MARKER, BpmnEventPeer::EVN_IS_INTERRUPTING, BpmnEventPeer::EVN_ATTACHED_TO, BpmnEventPeer::EVN_CANCEL_ACTIVITY, BpmnEventPeer::EVN_ACTIVITY_REF, BpmnEventPeer::EVN_WAIT_FOR_COMPLETION, BpmnEventPeer::EVN_ERROR_NAME, BpmnEventPeer::EVN_ERROR_CODE, BpmnEventPeer::EVN_ESCALATION_NAME, BpmnEventPeer::EVN_ESCALATION_CODE, BpmnEventPeer::EVN_CONDITION, BpmnEventPeer::EVN_MESSAGE, BpmnEventPeer::EVN_OPRERATION_NAME, BpmnEventPeer::EVN_OPERATION_IMPLEMENTATION_REF, BpmnEventPeer::EVN_TIME_DATE, BpmnEventPeer::EVN_TIME_CYCLE, BpmnEventPeer::EVN_TIME_DURATION, BpmnEventPeer::EVN_BEHAVIOR, ),
BasePeer::TYPE_FIELDNAME => array ('EVN_UID', 'PRJ_UID', 'PRO_UID', 'EVN_NAME', 'EVN_TYPE', 'EVN_MARKER', 'EVN_IS_INTERRUPTING', 'EVN_ATTACHED_TO', 'EVN_CANCEL_ACTIVITY', 'EVN_ACTIVITY REF', 'EVN_WAIT_FOR COMPLETION', 'EVN_ERROR_NAME', 'EVN_ERROR_CODE', 'EVN_ESCALATION_NAME', 'EVN_ESCALATION_CODE', 'EVN_CONDITION', 'EVN_MESSAGE', 'EVN_OPRERATION_NAME', 'EVN_OPERATION_IMPLEMENTATION_REF', 'EVN_TIME_DATE', 'EVN_TIME_CYCLE', 'EVN_TIME_DURATION', 'EVN_BEHAVIOR', ), BasePeer::TYPE_FIELDNAME => array ('EVN_UID', 'PRJ_UID', 'PRO_UID', 'EVN_NAME', 'EVN_TYPE', 'EVN_MARKER', 'EVN_IS_INTERRUPTING', 'EVN_ATTACHED_TO', 'EVN_CANCEL_ACTIVITY', 'EVN_ACTIVITY_REF', 'EVN_WAIT_FOR_COMPLETION', 'EVN_ERROR_NAME', 'EVN_ERROR_CODE', 'EVN_ESCALATION_NAME', 'EVN_ESCALATION_CODE', 'EVN_CONDITION', 'EVN_MESSAGE', 'EVN_OPRERATION_NAME', 'EVN_OPERATION_IMPLEMENTATION_REF', 'EVN_TIME_DATE', 'EVN_TIME_CYCLE', 'EVN_TIME_DURATION', 'EVN_BEHAVIOR', ),
BasePeer::TYPE_NUM => array (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, ) BasePeer::TYPE_NUM => array (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, )
); );
@@ -124,9 +124,9 @@ abstract class BaseBpmnEventPeer
* e.g. self::$fieldNames[BasePeer::TYPE_PHPNAME]['Id'] = 0 * e.g. self::$fieldNames[BasePeer::TYPE_PHPNAME]['Id'] = 0
*/ */
private static $fieldKeys = array ( private static $fieldKeys = array (
BasePeer::TYPE_PHPNAME => array ('EvnUid' => 0, 'PrjUid' => 1, 'ProUid' => 2, 'EvnName' => 3, 'EvnType' => 4, 'EvnMarker' => 5, 'EvnIsInterrupting' => 6, 'EvnAttachedTo' => 7, 'EvnCancelActivity' => 8, 'EvnActivity ref' => 9, 'EvnWaitFor completion' => 10, 'EvnErrorName' => 11, 'EvnErrorCode' => 12, 'EvnEscalationName' => 13, 'EvnEscalationCode' => 14, 'EvnCondition' => 15, 'EvnMessage' => 16, 'EvnOprerationName' => 17, 'EvnOperationImplementationRef' => 18, 'EvnTimeDate' => 19, 'EvnTimeCycle' => 20, 'EvnTimeDuration' => 21, 'EvnBehavior' => 22, ), BasePeer::TYPE_PHPNAME => array ('EvnUid' => 0, 'PrjUid' => 1, 'ProUid' => 2, 'EvnName' => 3, 'EvnType' => 4, 'EvnMarker' => 5, 'EvnIsInterrupting' => 6, 'EvnAttachedTo' => 7, 'EvnCancelActivity' => 8, 'EvnActivityRef' => 9, 'EvnWaitForCompletion' => 10, 'EvnErrorName' => 11, 'EvnErrorCode' => 12, 'EvnEscalationName' => 13, 'EvnEscalationCode' => 14, 'EvnCondition' => 15, 'EvnMessage' => 16, 'EvnOprerationName' => 17, 'EvnOperationImplementationRef' => 18, 'EvnTimeDate' => 19, 'EvnTimeCycle' => 20, 'EvnTimeDuration' => 21, 'EvnBehavior' => 22, ),
BasePeer::TYPE_COLNAME => array (BpmnEventPeer::EVN_UID => 0, BpmnEventPeer::PRJ_UID => 1, BpmnEventPeer::PRO_UID => 2, BpmnEventPeer::EVN_NAME => 3, BpmnEventPeer::EVN_TYPE => 4, BpmnEventPeer::EVN_MARKER => 5, BpmnEventPeer::EVN_IS_INTERRUPTING => 6, BpmnEventPeer::EVN_ATTACHED_TO => 7, BpmnEventPeer::EVN_CANCEL_ACTIVITY => 8, BpmnEventPeer::EVN_ACTIVITY REF => 9, BpmnEventPeer::EVN_WAIT_FOR COMPLETION => 10, BpmnEventPeer::EVN_ERROR_NAME => 11, BpmnEventPeer::EVN_ERROR_CODE => 12, BpmnEventPeer::EVN_ESCALATION_NAME => 13, BpmnEventPeer::EVN_ESCALATION_CODE => 14, BpmnEventPeer::EVN_CONDITION => 15, BpmnEventPeer::EVN_MESSAGE => 16, BpmnEventPeer::EVN_OPRERATION_NAME => 17, BpmnEventPeer::EVN_OPERATION_IMPLEMENTATION_REF => 18, BpmnEventPeer::EVN_TIME_DATE => 19, BpmnEventPeer::EVN_TIME_CYCLE => 20, BpmnEventPeer::EVN_TIME_DURATION => 21, BpmnEventPeer::EVN_BEHAVIOR => 22, ), BasePeer::TYPE_COLNAME => array (BpmnEventPeer::EVN_UID => 0, BpmnEventPeer::PRJ_UID => 1, BpmnEventPeer::PRO_UID => 2, BpmnEventPeer::EVN_NAME => 3, BpmnEventPeer::EVN_TYPE => 4, BpmnEventPeer::EVN_MARKER => 5, BpmnEventPeer::EVN_IS_INTERRUPTING => 6, BpmnEventPeer::EVN_ATTACHED_TO => 7, BpmnEventPeer::EVN_CANCEL_ACTIVITY => 8, BpmnEventPeer::EVN_ACTIVITY_REF => 9, BpmnEventPeer::EVN_WAIT_FOR_COMPLETION => 10, BpmnEventPeer::EVN_ERROR_NAME => 11, BpmnEventPeer::EVN_ERROR_CODE => 12, BpmnEventPeer::EVN_ESCALATION_NAME => 13, BpmnEventPeer::EVN_ESCALATION_CODE => 14, BpmnEventPeer::EVN_CONDITION => 15, BpmnEventPeer::EVN_MESSAGE => 16, BpmnEventPeer::EVN_OPRERATION_NAME => 17, BpmnEventPeer::EVN_OPERATION_IMPLEMENTATION_REF => 18, BpmnEventPeer::EVN_TIME_DATE => 19, BpmnEventPeer::EVN_TIME_CYCLE => 20, BpmnEventPeer::EVN_TIME_DURATION => 21, BpmnEventPeer::EVN_BEHAVIOR => 22, ),
BasePeer::TYPE_FIELDNAME => array ('EVN_UID' => 0, 'PRJ_UID' => 1, 'PRO_UID' => 2, 'EVN_NAME' => 3, 'EVN_TYPE' => 4, 'EVN_MARKER' => 5, 'EVN_IS_INTERRUPTING' => 6, 'EVN_ATTACHED_TO' => 7, 'EVN_CANCEL_ACTIVITY' => 8, 'EVN_ACTIVITY REF' => 9, 'EVN_WAIT_FOR COMPLETION' => 10, 'EVN_ERROR_NAME' => 11, 'EVN_ERROR_CODE' => 12, 'EVN_ESCALATION_NAME' => 13, 'EVN_ESCALATION_CODE' => 14, 'EVN_CONDITION' => 15, 'EVN_MESSAGE' => 16, 'EVN_OPRERATION_NAME' => 17, 'EVN_OPERATION_IMPLEMENTATION_REF' => 18, 'EVN_TIME_DATE' => 19, 'EVN_TIME_CYCLE' => 20, 'EVN_TIME_DURATION' => 21, 'EVN_BEHAVIOR' => 22, ), BasePeer::TYPE_FIELDNAME => array ('EVN_UID' => 0, 'PRJ_UID' => 1, 'PRO_UID' => 2, 'EVN_NAME' => 3, 'EVN_TYPE' => 4, 'EVN_MARKER' => 5, 'EVN_IS_INTERRUPTING' => 6, 'EVN_ATTACHED_TO' => 7, 'EVN_CANCEL_ACTIVITY' => 8, 'EVN_ACTIVITY_REF' => 9, 'EVN_WAIT_FOR_COMPLETION' => 10, 'EVN_ERROR_NAME' => 11, 'EVN_ERROR_CODE' => 12, 'EVN_ESCALATION_NAME' => 13, 'EVN_ESCALATION_CODE' => 14, 'EVN_CONDITION' => 15, 'EVN_MESSAGE' => 16, 'EVN_OPRERATION_NAME' => 17, 'EVN_OPERATION_IMPLEMENTATION_REF' => 18, 'EVN_TIME_DATE' => 19, 'EVN_TIME_CYCLE' => 20, 'EVN_TIME_DURATION' => 21, 'EVN_BEHAVIOR' => 22, ),
BasePeer::TYPE_NUM => array (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, ) BasePeer::TYPE_NUM => array (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, )
); );
@@ -246,9 +246,9 @@ abstract class BaseBpmnEventPeer
$criteria->addSelectColumn(BpmnEventPeer::EVN_CANCEL_ACTIVITY); $criteria->addSelectColumn(BpmnEventPeer::EVN_CANCEL_ACTIVITY);
$criteria->addSelectColumn(BpmnEventPeer::EVN_ACTIVITY REF); $criteria->addSelectColumn(BpmnEventPeer::EVN_ACTIVITY_REF);
$criteria->addSelectColumn(BpmnEventPeer::EVN_WAIT_FOR COMPLETION); $criteria->addSelectColumn(BpmnEventPeer::EVN_WAIT_FOR_COMPLETION);
$criteria->addSelectColumn(BpmnEventPeer::EVN_ERROR_NAME); $criteria->addSelectColumn(BpmnEventPeer::EVN_ERROR_NAME);

View File

@@ -3260,8 +3260,8 @@
<column name="EVN_IS_INTERRUPTING" type="TINYINT" required="false" default="1"/> <column name="EVN_IS_INTERRUPTING" type="TINYINT" required="false" default="1"/>
<column name="EVN_ATTACHED_TO" type="VARCHAR" size="32" required="false" default=""/> <column name="EVN_ATTACHED_TO" type="VARCHAR" size="32" required="false" default=""/>
<column name="EVN_CANCEL_ACTIVITY" type="TINYINT" required="false" default="0"/> <column name="EVN_CANCEL_ACTIVITY" type="TINYINT" required="false" default="0"/>
<column name="EVN_ACTIVITY REF" type="VARCHAR" size="32" required="false" default=""/> <column name="EVN_ACTIVITY_REF" type="VARCHAR" size="32" required="false" default=""/>
<column name="EVN_WAIT_FOR COMPLETION" type="TINYINT" required="false" default="1"/> <column name="EVN_WAIT_FOR_COMPLETION" type="TINYINT" required="false" default="1"/>
<column name="EVN_ERROR_NAME" type="VARCHAR" size="255" required="false"/> <column name="EVN_ERROR_NAME" type="VARCHAR" size="255" required="false"/>
<column name="EVN_ERROR_CODE" type="VARCHAR" size="255" required="false"/> <column name="EVN_ERROR_CODE" type="VARCHAR" size="255" required="false"/>
<column name="EVN_ESCALATION_NAME" type="VARCHAR" size="255" required="false"/> <column name="EVN_ESCALATION_NAME" type="VARCHAR" size="255" required="false"/>

View File

@@ -1788,8 +1788,8 @@ CREATE TABLE `BPMN_EVENT`
`EVN_IS_INTERRUPTING` TINYINT default 1, `EVN_IS_INTERRUPTING` TINYINT default 1,
`EVN_ATTACHED_TO` VARCHAR(32) default '', `EVN_ATTACHED_TO` VARCHAR(32) default '',
`EVN_CANCEL_ACTIVITY` TINYINT default 0, `EVN_CANCEL_ACTIVITY` TINYINT default 0,
`EVN_ACTIVITY REF` VARCHAR(32) default '', `EVN_ACTIVITY_REF` VARCHAR(32) default '',
`EVN_WAIT_FOR COMPLETION` TINYINT default 1, `EVN_WAIT_FOR_COMPLETION` TINYINT default 1,
`EVN_ERROR_NAME` VARCHAR(255), `EVN_ERROR_NAME` VARCHAR(255),
`EVN_ERROR_CODE` VARCHAR(255), `EVN_ERROR_CODE` VARCHAR(255),
`EVN_ESCALATION_NAME` VARCHAR(255), `EVN_ESCALATION_NAME` VARCHAR(255),