mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
54 lines
1.6 KiB
Python
54 lines
1.6 KiB
Python
|
# Generated by Django 3.0.6 on 2020-06-30 18:55
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('dcim', '0110_virtualchassis_name'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name='consoleporttemplate',
|
||
|
name='description',
|
||
|
field=models.CharField(blank=True, max_length=200),
|
||
|
),
|
||
|
migrations.AddField(
|
||
|
model_name='consoleserverporttemplate',
|
||
|
name='description',
|
||
|
field=models.CharField(blank=True, max_length=200),
|
||
|
),
|
||
|
migrations.AddField(
|
||
|
model_name='devicebaytemplate',
|
||
|
name='description',
|
||
|
field=models.CharField(blank=True, max_length=200),
|
||
|
),
|
||
|
migrations.AddField(
|
||
|
model_name='frontporttemplate',
|
||
|
name='description',
|
||
|
field=models.CharField(blank=True, max_length=200),
|
||
|
),
|
||
|
migrations.AddField(
|
||
|
model_name='interfacetemplate',
|
||
|
name='description',
|
||
|
field=models.CharField(blank=True, max_length=200),
|
||
|
),
|
||
|
migrations.AddField(
|
||
|
model_name='poweroutlettemplate',
|
||
|
name='description',
|
||
|
field=models.CharField(blank=True, max_length=200),
|
||
|
),
|
||
|
migrations.AddField(
|
||
|
model_name='powerporttemplate',
|
||
|
name='description',
|
||
|
field=models.CharField(blank=True, max_length=200),
|
||
|
),
|
||
|
migrations.AddField(
|
||
|
model_name='rearporttemplate',
|
||
|
name='description',
|
||
|
field=models.CharField(blank=True, max_length=200),
|
||
|
),
|
||
|
]
|