This commit is contained in:
2023-11-13 15:45:22 +03:00
parent 9f76abcfc4
commit 2ebc03606d
3 changed files with 96 additions and 55 deletions

View File

@ -52,7 +52,7 @@ class Fund(Base):
amount = Column(Integer)
active = Column(Boolean, default=True)
users = relationship("FundMember", backref="fund")
members = relationship("FundMember", backref="fund")
class FundMember(Base):