Expose tracks

This commit is contained in:
2022-07-18 23:45:13 +02:00
parent be6a685f55
commit 63379c9673
4 changed files with 25 additions and 3 deletions

View File

@@ -85,7 +85,7 @@ class Scale(models.Model):
scale = models.CharField(max_length=32, unique=True)
ratio = models.CharField(max_length=16, blank=True)
gauge = models.CharField(max_length=16, blank=True)
track = models.CharField(max_length=16, blank=True)
tracks = models.CharField(max_length=16, blank=True)
class Meta:
ordering = ["scale"]