mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
25 lines
912 B
Python
25 lines
912 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11.6 on 2017-12-19 20:56
|
|
from django.db import migrations, models
|
|
import django.db.models.deletion
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('dcim', '0052_virtual_chassis'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='platform',
|
|
name='manufacturer',
|
|
field=models.ForeignKey(blank=True, help_text='Optionally limit this platform to devices of a certain manufacturer', null=True, on_delete=django.db.models.deletion.CASCADE, related_name='platforms', to='dcim.Manufacturer'),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='platform',
|
|
name='napalm_driver',
|
|
field=models.CharField(blank=True, help_text='The name of the NAPALM driver to use when interacting with devices', max_length=50, verbose_name='NAPALM driver'),
|
|
),
|
|
]
|