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:
15
workflow/engine/src/ProcessMaker/Model/Configuration.php
Normal file
15
workflow/engine/src/ProcessMaker/Model/Configuration.php
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user