1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Add description field to RackRole and DeviceRole models (#3655)

This commit is contained in:
Jeremy Stretch
2019-12-10 12:53:28 -05:00
parent f0a6c881bc
commit 1f288175e4
5 changed files with 49 additions and 13 deletions

View File

@@ -0,0 +1,23 @@
# Generated by Django 2.2.6 on 2019-12-10 17:15
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('dcim', '0086_device_name_nonunique'),
]
operations = [
migrations.AddField(
model_name='devicerole',
name='description',
field=models.CharField(blank=True, max_length=100),
),
migrations.AddField(
model_name='rackrole',
name='description',
field=models.CharField(blank=True, max_length=100),
),
]