extend language name
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2021-08-02 21:44:38 +02:00
parent 2d49c70f0f
commit 4e67b8a966
2 changed files with 5 additions and 5 deletions

View File

@ -176,7 +176,7 @@ class Language(db.Model):
__tablename__ = "language"
id = Column(String(2), primary_key=True)
name = Column(String(25), nullable=False)
name = Column(String(100), nullable=False)
profiles = relationship("ProfileLanguage", back_populates="language")