Files

11 lines
193 B
PHP
Raw Permalink 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;
}