mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
Refactor FDB Tables to Laravel (#9669)
* Refactor FDB Tables to Laravel Hopefully much better performance with large tables. Better dns resolution (limit to 4 IPs tried per MAC) * update style * de-duplicate IPs * fixed column width for mac and vlan * Make DNS column visibility control whether or not we send the dns query. Hide that column by default.
This commit is contained in:
11
app/Models/Ipv4Mac.php
Normal file
11
app/Models/Ipv4Mac.php
Normal file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class Ipv4Mac extends Model
|
||||
{
|
||||
protected $table = 'ipv4_mac';
|
||||
public $timestamps = false;
|
||||
}
|
Reference in New Issue
Block a user