aboutsummaryrefslogtreecommitdiff
path: root/src/srht_contrib/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/srht_contrib/models.py')
-rw-r--r--src/srht_contrib/models.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/srht_contrib/models.py b/src/srht_contrib/models.py
index 441b6ec..401e945 100644
--- a/src/srht_contrib/models.py
+++ b/src/srht_contrib/models.py
@@ -69,6 +69,7 @@ class TrackedActor(Base):
is_active: Mapped[bool] = mapped_column(Boolean, nullable=False, default=True)
discovery_state: Mapped[str] = mapped_column(String(32), nullable=False, default="queued")
queued_for_discovery_at: Mapped[datetime | None] = mapped_column(DateTime(timezone=True), nullable=True)
+ priority_boosted_at: Mapped[datetime | None] = mapped_column(DateTime(timezone=True), nullable=True)
next_poll_after: Mapped[datetime | None] = mapped_column(DateTime(timezone=True), nullable=True)
last_claimed_at: Mapped[datetime | None] = mapped_column(DateTime(timezone=True), nullable=True)
poll_attempts: Mapped[int] = mapped_column(Integer, nullable=False, default=0)