Fix SNCF TVS ID for stations

This commit is contained in:
Emmy D'Anello 2024-05-12 12:23:19 +02:00
parent 7d9b7d90cd
commit 15239117f5
Signed by: ynerant
GPG Key ID: 3A75C55819C8CF85
2 changed files with 2 additions and 2 deletions

View File

@ -135,7 +135,7 @@ class Migration(migrations.Migration):
models.CharField( models.CharField(
blank=True, blank=True,
default=None, default=None,
max_length=3, max_length=16,
null=True, null=True,
verbose_name="SNCF TVS ID", verbose_name="SNCF TVS ID",
), ),

View File

@ -105,7 +105,7 @@ class Station(models.Model):
) )
sncf_tvs_id = models.CharField( sncf_tvs_id = models.CharField(
max_length=3, max_length=16,
verbose_name=_("SNCF TVS ID"), verbose_name=_("SNCF TVS ID"),
blank=True, blank=True,
null=True, null=True,