|
|
@@ -1,4 +1,4 @@
|
|
|
-# Generated by Django 6.0.6 on 2026-06-24 21:45
|
|
|
+# Generated by Django 6.0.6 on 2026-06-25 22:43
|
|
|
|
|
|
import django.contrib.postgres.fields
|
|
|
import django.core.validators
|
|
|
@@ -161,6 +161,26 @@ class Migration(migrations.Migration):
|
|
|
blank=True, decimal_places=4, max_digits=13, null=True
|
|
|
),
|
|
|
),
|
|
|
+ (
|
|
|
+ "maximum_flow",
|
|
|
+ models.DecimalField(
|
|
|
+ blank=True,
|
|
|
+ decimal_places=2,
|
|
|
+ max_digits=8,
|
|
|
+ null=True,
|
|
|
+ validators=[django.core.validators.MinValueValidator(0)],
|
|
|
+ ),
|
|
|
+ ),
|
|
|
+ (
|
|
|
+ "maximum_flow_unit",
|
|
|
+ models.CharField(blank=True, max_length=50, null=True),
|
|
|
+ ),
|
|
|
+ (
|
|
|
+ "_abs_maximum_flow",
|
|
|
+ models.DecimalField(
|
|
|
+ blank=True, decimal_places=4, max_digits=13, null=True
|
|
|
+ ),
|
|
|
+ ),
|
|
|
("name", models.CharField(db_collation="natural_sort", max_length=64)),
|
|
|
("label", models.CharField(blank=True, max_length=64)),
|
|
|
("description", models.CharField(blank=True, max_length=200)),
|
|
|
@@ -195,16 +215,6 @@ class Migration(migrations.Migration):
|
|
|
"connector_type",
|
|
|
models.CharField(blank=True, max_length=50, null=True),
|
|
|
),
|
|
|
- (
|
|
|
- "maximum_flow",
|
|
|
- models.DecimalField(
|
|
|
- blank=True,
|
|
|
- decimal_places=2,
|
|
|
- max_digits=8,
|
|
|
- null=True,
|
|
|
- validators=[django.core.validators.MinValueValidator(0)],
|
|
|
- ),
|
|
|
- ),
|
|
|
(
|
|
|
"heat_capacity",
|
|
|
models.DecimalField(
|
|
|
@@ -514,14 +524,6 @@ class Migration(migrations.Migration):
|
|
|
blank=True, decimal_places=4, max_digits=13, null=True
|
|
|
),
|
|
|
),
|
|
|
- ("name", models.CharField(db_collation="natural_sort", max_length=64)),
|
|
|
- ("label", models.CharField(blank=True, max_length=64)),
|
|
|
- ("description", models.CharField(blank=True, max_length=200)),
|
|
|
- ("type", models.CharField(blank=True, max_length=50, null=True)),
|
|
|
- (
|
|
|
- "connector_type",
|
|
|
- models.CharField(blank=True, max_length=50, null=True),
|
|
|
- ),
|
|
|
(
|
|
|
"maximum_flow",
|
|
|
models.DecimalField(
|
|
|
@@ -532,6 +534,24 @@ class Migration(migrations.Migration):
|
|
|
validators=[django.core.validators.MinValueValidator(0)],
|
|
|
),
|
|
|
),
|
|
|
+ (
|
|
|
+ "maximum_flow_unit",
|
|
|
+ models.CharField(blank=True, max_length=50, null=True),
|
|
|
+ ),
|
|
|
+ (
|
|
|
+ "_abs_maximum_flow",
|
|
|
+ models.DecimalField(
|
|
|
+ blank=True, decimal_places=4, max_digits=13, null=True
|
|
|
+ ),
|
|
|
+ ),
|
|
|
+ ("name", models.CharField(db_collation="natural_sort", max_length=64)),
|
|
|
+ ("label", models.CharField(blank=True, max_length=64)),
|
|
|
+ ("description", models.CharField(blank=True, max_length=200)),
|
|
|
+ ("type", models.CharField(blank=True, max_length=50, null=True)),
|
|
|
+ (
|
|
|
+ "connector_type",
|
|
|
+ models.CharField(blank=True, max_length=50, null=True),
|
|
|
+ ),
|
|
|
(
|
|
|
"heat_capacity",
|
|
|
models.DecimalField(
|
|
|
@@ -673,8 +693,6 @@ class Migration(migrations.Migration):
|
|
|
encoder=utilities.json.CustomFieldJSONEncoder,
|
|
|
),
|
|
|
),
|
|
|
- ("description", models.CharField(blank=True, max_length=200)),
|
|
|
- ("comments", models.TextField(blank=True)),
|
|
|
(
|
|
|
"supply_temperature",
|
|
|
models.DecimalField(
|
|
|
@@ -703,6 +721,8 @@ class Migration(migrations.Migration):
|
|
|
blank=True, decimal_places=4, max_digits=8, null=True
|
|
|
),
|
|
|
),
|
|
|
+ ("description", models.CharField(blank=True, max_length=200)),
|
|
|
+ ("comments", models.TextField(blank=True)),
|
|
|
("name", models.CharField(db_collation="natural_sort", max_length=100)),
|
|
|
("type", models.CharField(max_length=50)),
|
|
|
("status", models.CharField(default="active", max_length=50)),
|
|
|
@@ -814,34 +834,6 @@ class Migration(migrations.Migration):
|
|
|
blank=True, decimal_places=4, max_digits=13, null=True
|
|
|
),
|
|
|
),
|
|
|
- ("description", models.CharField(blank=True, max_length=200)),
|
|
|
- ("comments", models.TextField(blank=True)),
|
|
|
- ("cable_end", models.CharField(blank=True, max_length=1, null=True)),
|
|
|
- (
|
|
|
- "cable_connector",
|
|
|
- models.PositiveSmallIntegerField(
|
|
|
- blank=True,
|
|
|
- null=True,
|
|
|
- validators=[
|
|
|
- django.core.validators.MinValueValidator(1),
|
|
|
- django.core.validators.MaxValueValidator(256),
|
|
|
- ],
|
|
|
- ),
|
|
|
- ),
|
|
|
- (
|
|
|
- "cable_positions",
|
|
|
- django.contrib.postgres.fields.ArrayField(
|
|
|
- base_field=models.PositiveSmallIntegerField(
|
|
|
- validators=[
|
|
|
- django.core.validators.MinValueValidator(1),
|
|
|
- django.core.validators.MaxValueValidator(1024),
|
|
|
- ]
|
|
|
- ),
|
|
|
- blank=True,
|
|
|
- null=True,
|
|
|
- ),
|
|
|
- ),
|
|
|
- ("mark_connected", models.BooleanField(default=False)),
|
|
|
(
|
|
|
"supply_temperature",
|
|
|
models.DecimalField(
|
|
|
@@ -870,6 +862,34 @@ class Migration(migrations.Migration):
|
|
|
blank=True, decimal_places=4, max_digits=8, null=True
|
|
|
),
|
|
|
),
|
|
|
+ ("description", models.CharField(blank=True, max_length=200)),
|
|
|
+ ("comments", models.TextField(blank=True)),
|
|
|
+ ("cable_end", models.CharField(blank=True, max_length=1, null=True)),
|
|
|
+ (
|
|
|
+ "cable_connector",
|
|
|
+ models.PositiveSmallIntegerField(
|
|
|
+ blank=True,
|
|
|
+ null=True,
|
|
|
+ validators=[
|
|
|
+ django.core.validators.MinValueValidator(1),
|
|
|
+ django.core.validators.MaxValueValidator(256),
|
|
|
+ ],
|
|
|
+ ),
|
|
|
+ ),
|
|
|
+ (
|
|
|
+ "cable_positions",
|
|
|
+ django.contrib.postgres.fields.ArrayField(
|
|
|
+ base_field=models.PositiveSmallIntegerField(
|
|
|
+ validators=[
|
|
|
+ django.core.validators.MinValueValidator(1),
|
|
|
+ django.core.validators.MaxValueValidator(1024),
|
|
|
+ ]
|
|
|
+ ),
|
|
|
+ blank=True,
|
|
|
+ null=True,
|
|
|
+ ),
|
|
|
+ ),
|
|
|
+ ("mark_connected", models.BooleanField(default=False)),
|
|
|
("name", models.CharField(db_collation="natural_sort", max_length=100)),
|
|
|
("status", models.CharField(default="active", max_length=50)),
|
|
|
("type", models.CharField(default="supply", max_length=50)),
|