mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
15 lines
270 B
PHP
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';
|
||
|
}
|