mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
13 lines
280 B
PHP
13 lines
280 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Models;
|
||
|
|
|
||
|
|
class HrSystem extends DeviceRelatedModel
|
||
|
|
{
|
||
|
|
public $timestamps = false;
|
||
|
|
protected $table = 'hrSystem';
|
||
|
|
protected $fillable = ['hrSystemNumUsers', 'hrSystemProcesses', 'hrSystemMaxProcesses'];
|
||
|
|
|
||
|
|
protected $primaryKey = 'hrSystem_id';
|
||
|
|
}
|