Fix SNCF TVS ID for stations
This commit is contained in:
parent
7d9b7d90cd
commit
15239117f5
|
@ -135,7 +135,7 @@ class Migration(migrations.Migration):
|
|||
models.CharField(
|
||||
blank=True,
|
||||
default=None,
|
||||
max_length=3,
|
||||
max_length=16,
|
||||
null=True,
|
||||
verbose_name="SNCF TVS ID",
|
||||
),
|
||||
|
|
|
@ -105,7 +105,7 @@ class Station(models.Model):
|
|||
)
|
||||
|
||||
sncf_tvs_id = models.CharField(
|
||||
max_length=3,
|
||||
max_length=16,
|
||||
verbose_name=_("SNCF TVS ID"),
|
||||
blank=True,
|
||||
null=True,
|
||||
|
|
Loading…
Reference in New Issue