aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--metricity/models.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/metricity/models.py b/metricity/models.py
index 86bb723..638e442 100644
--- a/metricity/models.py
+++ b/metricity/models.py
@@ -78,3 +78,4 @@ class Message(Base):
author_id: Mapped[str] = mapped_column(ForeignKey("users.id", ondelete="CASCADE"), index=True)
created_at = mapped_column(TZDateTime())
is_deleted: Mapped[bool] = mapped_column(default=False)
+ content_hash: Mapped[str] = mapped_column(nullable=True)