Files
librenms-librenms/app/Models/Vlan.php

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

18 lines
305 B
PHP
Raw Normal View History

<?php
namespace App\Models;
class Vlan extends DeviceRelatedModel
{
protected $primaryKey = 'vlan_id';
public $timestamps = false;
protected $fillable = [
'device_id',
'vlan_vlan',
'vlan_domain',
'vlan_name',
'vlan_type',
'vlan_mtu',
];
}