This commit is contained in:
grillazz
2025-11-16 15:28:51 +01:00
parent b10665c64e
commit 49b85128ce
4 changed files with 5 additions and 9 deletions

View File

@@ -259,9 +259,7 @@ class Paragraph(Base):
char_count: Mapped[int] = mapped_column(Integer)
word_count: Mapped[int] = mapped_column(Integer)
character: Mapped[Character] = relationship(
"Character", back_populates="paragraph"
)
character: Mapped[Character] = relationship("Character", back_populates="paragraph")
chapter: Mapped[Chapter] = relationship("Chapter", back_populates="paragraph")
work: Mapped[Work] = relationship("Work", back_populates="paragraph")