PMCORE-935
This commit is contained in:
17
workflow/engine/src/ProcessMaker/Model/Department.php
Normal file
17
workflow/engine/src/ProcessMaker/Model/Department.php
Normal file
@@ -0,0 +1,17 @@
|
||||
<?php
|
||||
|
||||
namespace ProcessMaker\Model;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
/**
|
||||
* Class Department
|
||||
* @package ProcessMaker\Model
|
||||
*/
|
||||
class Department extends Model
|
||||
{
|
||||
// Set our table name
|
||||
protected $table = 'DEPARTMENT';
|
||||
// We do not store timestamps
|
||||
public $timestamps = false;
|
||||
}
|
||||
Reference in New Issue
Block a user