mirror of
https://github.com/netbox-community/netbox.git
synced 2025-12-11 19:09:36 -06:00
* 17929 Add Scope Mixins to Prefix * 17929 Add Scope Mixins to Prefix * 17929 fixes for tests * 17929 merge latest scope changes * 12596 review changes * 12596 review changes * 12596 review changes * 12596 review changes * 12596 review changes * 12596 review changes * 17929 fix migrations
18 lines
456 B
Python
18 lines
456 B
Python
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('wireless', '0012_alter_wirelesslan__location_and_more'),
|
|
('dcim', '0197_natural_sort_collation'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='wirelesslangroup',
|
|
name='name',
|
|
field=models.CharField(db_collation='natural_sort', max_length=100, unique=True),
|
|
),
|
|
]
|