This commit is contained in:
Andrea Adamczyk
2019-07-09 11:23:00 -04:00
parent 90ee77b6dd
commit 43c3790b43
5 changed files with 585 additions and 2 deletions

View File

@@ -0,0 +1,14 @@
<?php
namespace ProcessMaker\Model;
use Illuminate\Database\Eloquent\Model;
class BpmnProject extends Model
{
// Set our table name
protected $table = 'BPMN_PROJECT';
protected $primaryKey = 'PRJ_UID';
// We do not have create/update timestamps for this table
public $timestamps = false;
}