|
|
@@ -0,0 +1,42 @@
|
|
|
+# Generated by Django 4.1.9 on 2023-05-12 18:46
|
|
|
+
|
|
|
+import django.core.validators
|
|
|
+from django.db import migrations, models
|
|
|
+
|
|
|
+
|
|
|
+class Migration(migrations.Migration):
|
|
|
+
|
|
|
+ dependencies = [
|
|
|
+ ('dcim', '0171_cabletermination_change_logging'),
|
|
|
+ ]
|
|
|
+
|
|
|
+ operations = [
|
|
|
+ migrations.AlterField(
|
|
|
+ model_name='powerport',
|
|
|
+ name='allocated_draw',
|
|
|
+ field=models.PositiveIntegerField(
|
|
|
+ blank=True, null=True, validators=[django.core.validators.MinValueValidator(1)]
|
|
|
+ ),
|
|
|
+ ),
|
|
|
+ migrations.AlterField(
|
|
|
+ model_name='powerport',
|
|
|
+ name='maximum_draw',
|
|
|
+ field=models.PositiveIntegerField(
|
|
|
+ blank=True, null=True, validators=[django.core.validators.MinValueValidator(1)]
|
|
|
+ ),
|
|
|
+ ),
|
|
|
+ migrations.AlterField(
|
|
|
+ model_name='powerporttemplate',
|
|
|
+ name='allocated_draw',
|
|
|
+ field=models.PositiveIntegerField(
|
|
|
+ blank=True, null=True, validators=[django.core.validators.MinValueValidator(1)]
|
|
|
+ ),
|
|
|
+ ),
|
|
|
+ migrations.AlterField(
|
|
|
+ model_name='powerporttemplate',
|
|
|
+ name='maximum_draw',
|
|
|
+ field=models.PositiveIntegerField(
|
|
|
+ blank=True, null=True, validators=[django.core.validators.MinValueValidator(1)]
|
|
|
+ ),
|
|
|
+ ),
|
|
|
+ ]
|