librenms/app/Models/HrSystem.php
2021-10-02 18:03:24 -05:00

13 lines
293 B
PHP

<?php
namespace App\Models;
class HrSystem extends DeviceRelatedModel
{
public $timestamps = false;
protected $table = 'hrSystem';
protected $fillable = ['device_id', 'hrSystemNumUsers', 'hrSystemProcesses', 'hrSystemMaxProcesses'];
protected $primaryKey = 'hrSystem_id';
}