Files
librenms-librenms/app/Models/PortStatistic.php
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
193 B
PHP
Raw Normal View History

2020-04-16 09:19:58 -05:00
<?php
namespace App\Models;
class PortStatistic extends PortRelatedModel
{
protected $table = 'ports_statistics';
protected $primaryKey = 'port_id';
public $timestamps = false;
}