Files
librenms-librenms/app/Models/HrSystem.php

13 lines
280 B
PHP
Raw Normal View History

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