refactor: remove read tracking from mentions (prep for notification center)

This commit is contained in:
CREDO23 2026-01-16 19:15:10 +02:00
parent 25eb240539
commit 80e19a52cb
11 changed files with 7 additions and 227 deletions

View file

@ -513,7 +513,6 @@ class ChatCommentMention(BaseModel, TimestampMixin):
nullable=False,
index=True,
)
read = Column(Boolean, nullable=False, default=False)
# Relationships
comment = relationship("ChatComment", back_populates="mentions")