More tests
This commit is contained in:
parent
c07d17ba9b
commit
0ab0eaec34
3 changed files with 85 additions and 91 deletions
|
@ -281,7 +281,7 @@ class Follower(Base):
|
|||
updated_at = Column(DateTime(timezone=True), nullable=False, default=now)
|
||||
|
||||
actor_id = Column(Integer, ForeignKey("actor.id"), nullable=False, unique=True)
|
||||
actor = relationship(Actor, uselist=False)
|
||||
actor: Mapped[Actor] = relationship(Actor, uselist=False)
|
||||
|
||||
inbox_object_id = Column(Integer, ForeignKey("inbox.id"), nullable=False)
|
||||
inbox_object = relationship(InboxObject, uselist=False)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue