PMCORE-935

This commit is contained in:
Paula.Quispe
2022-05-04 13:08:12 -04:00
parent d93e0040a2
commit 95ee55739d
5 changed files with 625 additions and 86 deletions

View 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;
}