PMCORE-548

This commit is contained in:
Andrea Adamczyk
2020-04-01 08:20:19 -04:00
parent 449f7a2315
commit 12825d27f2
4 changed files with 331 additions and 1 deletions

View File

@@ -0,0 +1,12 @@
<?php
namespace ProcessMaker\Model;
use Illuminate\Database\Eloquent\Model;
class ObjectPermission extends Model
{
protected $table = "OBJECT_PERMISSION";
protected $primaryKey = 'OP_UID';
public $timestamps = false;
}