edit db schema to add support for movies

This commit is contained in:
maxDorninger
2025-06-22 19:44:37 +02:00
parent 236334b091
commit 4936d8c861
2 changed files with 69 additions and 0 deletions

View File

@@ -16,3 +16,4 @@ class Torrent(Base):
hash: Mapped[str]
season_files = relationship("SeasonFile", back_populates="torrent")
movie_files = relationship("MovieFile", back_populates="torrent")