mirror of
https://github.com/netbox-community/netbox.git
synced 2025-12-10 10:29:36 -06:00
* 11279 add collation * 11279 add collation * 11279 add collation * 11279 add collation * 11279 fix tables /tests * 11279 fix tests * 11279 refactor VirtualDisk * Clean up migrations * Misc cleanup * Correct errant file inclusion --------- Co-authored-by: Jeremy Stretch <jstretch@netboxlabs.com>
33 lines
977 B
Python
33 lines
977 B
Python
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('ipam', '0075_vlan_qinq'),
|
|
('dcim', '0197_natural_sort_collation'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='asnrange',
|
|
name='name',
|
|
field=models.CharField(db_collation='natural_sort', max_length=100, unique=True),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='routetarget',
|
|
name='name',
|
|
field=models.CharField(db_collation='natural_sort', max_length=21, unique=True),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='vlangroup',
|
|
name='name',
|
|
field=models.CharField(db_collation='natural_sort', max_length=100),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='vrf',
|
|
name='name',
|
|
field=models.CharField(db_collation='natural_sort', max_length=100),
|
|
),
|
|
]
|