librenms/app/Models/EntityState.php
Tony Murray b6a8b602b8
Oxidized update and Device remove (#13730)
* Oxidized + Device remove
Was just working on oxidized, but then to properly update nodes after delete, updated delete_device()

* revert dumb style changes

* baseline update and no DI there...

* Fix OS first load and device deletion missing tables
2022-01-29 21:09:05 -06:00

14 lines
272 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
class EntityState extends DeviceRelatedModel
{
use HasFactory;
protected $table = 'entityState';
protected $primaryKey = 'entity_state_id';
public $timestamps = false;
}