summaryrefslogtreecommitdiff
path: root/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'models.py')
-rw-r--r--models.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/models.py b/models.py
index 6643a58..05aa587 100644
--- a/models.py
+++ b/models.py
@@ -27,6 +27,7 @@ class Film(Base):
director: Mapped[str | None] = mapped_column(String(255), nullable=True)
year: Mapped[int | None] = mapped_column(Integer, nullable=True)
country: Mapped[str | None] = mapped_column(String(255), nullable=True)
+ genre: Mapped[str | None] = mapped_column(String(255), nullable=True)
language: Mapped[str | None] = mapped_column(String(255), nullable=True)
runtime: Mapped[int | None] = mapped_column(Integer, nullable=True)
date_watched: Mapped[date | None] = mapped_column(Date, nullable=True)