diff --git a/app/models/users.py b/app/models/users.py index 14aeb26..58bda8c 100644 --- a/app/models/users.py +++ b/app/models/users.py @@ -103,6 +103,10 @@ class Member(User): trophies = db.relationship('Trophy', secondary=TrophyMember, back_populates='owners') + # Displayed title + # title_id = db.Column(db.Integer, db.ForeignKey('title.id')) + # title = db.relationship('Title', foreign_keys=title_id) + # Other fields populated automatically through relations: # List of unseen notifications (of type Notification)