librenms/app/Models/AlertLog.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

15 lines
270 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
class AlertLog extends DeviceRelatedModel
{
use HasFactory;
public const UPDATED_AT = null;
public const CREATED_AT = 'time_logged';
protected $table = 'alert_log';
}