14 lines
310 B
PHP
14 lines
310 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace ProcessMaker\Model;
|
||
|
|
|
||
|
|
use G;
|
||
|
|
use Illuminate\Database\Eloquent\Model;
|
||
|
|
|
||
|
|
class ElementTaskRelation extends Model
|
||
|
|
{
|
||
|
|
protected $table = 'ELEMENT_TASK_RELATION';
|
||
|
|
protected $primaryKey = 'ETR_UID';
|
||
|
|
// We do not have create/update timestamps for this table
|
||
|
|
public $timestamps = false;
|
||
|
|
}
|