This commit is contained in:
Paula Quispe
2019-05-09 14:56:36 -04:00
parent 20f8bafe60
commit 093b378220
14 changed files with 1065 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
<?php
namespace ProcessMaker\Model;
use Illuminate\Database\Eloquent\Model;
class AppAssignSelfServiceValueGroup extends Model
{
protected $table = 'APP_ASSIGN_SELF_SERVICE_VALUE_GROUP';
// We do not have create/update timestamps for this table
public $timestamps = false;
}