This commit is contained in:
Paula Quispe
2019-07-29 16:39:57 -04:00
committed by Paulis
parent 78306391a0
commit 83b4dfd980
12 changed files with 100 additions and 46 deletions

View File

@@ -0,0 +1,15 @@
<?php
namespace ProcessMaker\Model;
use Illuminate\Database\Eloquent\Model;
class Configuration extends Model
{
// Set our table name
protected $table = 'CONFIGURATION';
// Set the PK
protected $primaryKey = ['CFG_UID', 'OBJ_UID', 'PRO_UID', 'USR_UID', 'APP_UID'];
// No timestamps
public $timestamps = false;
}