mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
4132027ada
Co-authored-by: jeremystretch <jstretch@ns1.com>
19 lines
381 B
Python
19 lines
381 B
Python
# Generated by Django 4.0.7 on 2022-08-22 15:58
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('ipam', '0059_l2vpn'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='l2vpn',
|
|
name='slug',
|
|
field=models.SlugField(max_length=100, unique=True),
|
|
),
|
|
]
|