Merged in bugfix/PMC-1018 (pull request #7006)

PMC-1018

Approved-by: Julio Cesar Laura Avendaño <contact@julio-laura.com>
This commit is contained in:
Paula Quispe
2019-08-01 13:11:27 +00:00
committed by Julio Cesar Laura Avendaño
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;
}