changes to task scheduling and readability change on downloads view
This commit is contained in:
@@ -28,7 +28,7 @@ class Source(Base, TimestampMixin):
|
||||
platform: Mapped[str] = mapped_column(String(50), nullable=False, index=True)
|
||||
url: Mapped[str] = mapped_column(Text, nullable=False)
|
||||
enabled: Mapped[bool] = mapped_column(Boolean, default=True)
|
||||
check_interval: Mapped[int] = mapped_column(Integer, default=3600) # seconds
|
||||
check_interval: Mapped[int] = mapped_column(Integer, default=28800) # 8 hours in seconds
|
||||
|
||||
# Status tracking
|
||||
last_check: Mapped[Optional[datetime]] = mapped_column(nullable=True)
|
||||
|
||||
Reference in New Issue
Block a user