mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
22 lines
554 B
Python
22 lines
554 B
Python
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('extras', '0066_customfield_name_validation'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='customfield',
|
|
name='validation_maximum',
|
|
field=models.IntegerField(blank=True, null=True),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='customfield',
|
|
name='validation_minimum',
|
|
field=models.IntegerField(blank=True, null=True),
|
|
),
|
|
]
|