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

Add description field to SecretRole model (#3655)

This commit is contained in:
Jeremy Stretch
2019-12-10 13:03:09 -05:00
parent 7845d9b25f
commit 24bdd10b4f
5 changed files with 28 additions and 6 deletions

View File

@@ -0,0 +1,18 @@
# Generated by Django 2.2.6 on 2019-12-10 18:00
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('secrets', '0006_custom_tag_models'),
]
operations = [
migrations.AddField(
model_name='secretrole',
name='description',
field=models.CharField(blank=True, max_length=100),
),
]