This commit is contained in:
Aevann1 2021-09-22 00:44:18 +02:00
parent e849aa7d54
commit 22b56f5ed4
10 changed files with 25 additions and 25 deletions

View file

@ -48,7 +48,7 @@ class Badge(Base):
badge_id = Column(Integer, ForeignKey("badge_defs.id"))
description = Column(String(64))
url = Column(String(256))
badge = relationship("BadgeDef", lazy="joined", innerjoin=True)
badge = relationship("BadgeDef")
def __repr__(self):