Removing the existing download_url attribute

This commit is contained in:
edipretoro 2026-01-02 15:09:30 +01:00
parent 4bff05bc92
commit f0e6d73dde

View File

@ -58,10 +58,6 @@ class TvShowDB(Base):
String(255),
nullable=True
)
download_url: Mapped[str | None] = mapped_column(
String(255),
nullable=True
)
created_at: Mapped[datetime] = mapped_column(
DateTime,
server_default=func.datetime('now'),