mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
19 lines
420 B
Python
19 lines
420 B
Python
|
# Generated by Django 4.1.2 on 2022-11-03 18:24
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('circuits', '0040_provider_remove_deprecated_fields'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name='provider',
|
||
|
name='description',
|
||
|
field=models.CharField(blank=True, max_length=200),
|
||
|
),
|
||
|
]
|