Implement support for rolling stock load in consists

This commit is contained in:
2026-01-03 14:18:46 +01:00
parent 2ab2d00585
commit 49c8d804d6
5 changed files with 65 additions and 7 deletions

View File

@@ -0,0 +1,18 @@
# Generated by Django 6.0 on 2026-01-03 12:31
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("consist", "0018_alter_consist_scale"),
]
operations = [
migrations.AddField(
model_name="consistitem",
name="load",
field=models.BooleanField(default=False),
),
]