extend skill name to 50 chars #58

This commit is contained in:
2021-11-22 20:11:58 +01:00
parent f0d05bbf22
commit 9dc9761a1a
3 changed files with 26 additions and 2 deletions

View File

@ -149,7 +149,7 @@ class Skill(db.Model):
__tablename__ = "skill"
id = Column(Integer, primary_key=True)
name = Column(String(25), unique=True, nullable=False)
name = Column(String(50), unique=True, nullable=False)
profiles = relationship("ProfileSkill", back_populates="skill")
searchtopics = relationship("ProfileSearchtopic", back_populates="skill")