mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
Introduced ability to edit/delete modules
This commit is contained in:
20
netbox/dcim/migrations/0007_module_discovered.py
Normal file
20
netbox/dcim/migrations/0007_module_discovered.py
Normal file
@@ -0,0 +1,20 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Generated by Django 1.9.5 on 2016-06-15 16:31
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('dcim', '0006_remove_device_ro_snmp'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='module',
|
||||
name='discovered',
|
||||
field=models.BooleanField(default=False, verbose_name=b'Discovered'),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user