update 1.0.7
This commit is contained in:
12
app/Model/helpdesk/Workflow/WorkflowAction.php
Normal file
12
app/Model/helpdesk/Workflow/WorkflowAction.php
Normal file
@@ -0,0 +1,12 @@
|
||||
<?php
|
||||
|
||||
namespace App\Model\helpdesk\Workflow;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class WorkflowAction extends Model
|
||||
{
|
||||
public $timestamps = false;
|
||||
protected $table = 'workflow_action';
|
||||
protected $fillable = ['id', 'workflow_id', 'condition', 'action', 'updated_at', 'created_at'];
|
||||
}
|
12
app/Model/helpdesk/Workflow/WorkflowName.php
Normal file
12
app/Model/helpdesk/Workflow/WorkflowName.php
Normal file
@@ -0,0 +1,12 @@
|
||||
<?php
|
||||
|
||||
namespace App\Model\helpdesk\Workflow;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class WorkflowName extends Model
|
||||
{
|
||||
public $timestamps = false;
|
||||
protected $table = 'workflow_name';
|
||||
protected $fillable = ['id', 'name', 'status', 'order', 'target', 'internal_note', 'updated_at', 'created_at'];
|
||||
}
|
12
app/Model/helpdesk/Workflow/WorkflowRules.php
Normal file
12
app/Model/helpdesk/Workflow/WorkflowRules.php
Normal file
@@ -0,0 +1,12 @@
|
||||
<?php
|
||||
|
||||
namespace App\Model\helpdesk\Workflow;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class WorkflowRules extends Model
|
||||
{
|
||||
public $timestamps = false;
|
||||
protected $table = 'workflow_rules';
|
||||
protected $fillable = ['id', 'workflow_id', 'matching_criteria', 'matching_scenario', 'matching_relation', 'matching_value', 'updated_at', 'created_at'];
|
||||
}
|
Reference in New Issue
Block a user