Files
luos/workflow/engine/src/ProcessMaker/Model/AppAssignSelfServiceValueGroup.php

25 lines
540 B
PHP
Raw Normal View History

2019-05-09 14:56:36 -04:00
<?php
namespace ProcessMaker\Model;
use App\Factories\HasFactory;
2019-05-09 14:56:36 -04:00
use Illuminate\Database\Eloquent\Model;
class AppAssignSelfServiceValueGroup extends Model
{
use HasFactory;
2019-05-09 14:56:36 -04:00
protected $table = 'APP_ASSIGN_SELF_SERVICE_VALUE_GROUP';
// We do not have create/update timestamps for this table
public $timestamps = false;
2019-05-13 16:44:40 -04:00
/**
* Return the appSelfServiceValue this belongs to
*/
public function appSelfService()
{
return $this->belongsTo(AppAssignSelfServiceValue::class, 'ID', 'ID');
}
2019-05-09 14:56:36 -04:00
}