feat: add empty_weigh and full_weight fields for auto and mechanic rvalution models
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
("evaluation", "0046_mechanicauto_fields_and_multi_tex_passport"),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name="autoevaluationmodel",
|
||||
name="full_weight",
|
||||
field=models.PositiveIntegerField(blank=True, null=True, verbose_name="full weight"),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name="autoevaluationmodel",
|
||||
name="empty_weight",
|
||||
field=models.PositiveIntegerField(blank=True, null=True, verbose_name="empty weight"),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name="mechanicautoevaluationmodel",
|
||||
name="full_weight",
|
||||
field=models.PositiveIntegerField(blank=True, null=True, verbose_name="full weight"),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name="mechanicautoevaluationmodel",
|
||||
name="empty_weight",
|
||||
field=models.PositiveIntegerField(blank=True, null=True, verbose_name="empty weight"),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user