Add built-in decoder interface type

This commit is contained in:
2024-04-30 11:08:16 +02:00
parent 35905bafdf
commit 456272b93a
3 changed files with 31 additions and 1 deletions

View File

@@ -0,0 +1,29 @@
# Generated by Django 5.0.4 on 2024-04-30 09:06
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("roster", "0026_rollingstock_item_number_slug"),
]
operations = [
migrations.AlterField(
model_name="rollingstock",
name="decoder_interface",
field=models.PositiveSmallIntegerField(
blank=True,
choices=[
(0, "Built-in"),
(1, "NEM651"),
(2, "NEM652"),
(3, "PluX"),
(4, "21MTC"),
(5, "Next18/Next18S"),
],
null=True,
),
),
]