PMCORE-2433

This commit is contained in:
Andrea Adamczyk
2020-11-17 20:07:35 -04:00
parent 5b46277ff4
commit d7bae0577a
8 changed files with 136 additions and 6 deletions

View File

@@ -0,0 +1,14 @@
<?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;
}