aboutsummaryrefslogtreecommitdiff
path: root/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'models.py')
-rw-r--r--models.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/models.py b/models.py
index 3e60640..b100703 100644
--- a/models.py
+++ b/models.py
@@ -8,6 +8,7 @@ class Message(Base):
id = Column(Integer, primary_key=True, autoincrement=True)
timestamp = Column(String, nullable=False)
+ message_id = Column(Integer, nullable=False)
author_id = Column(Integer, nullable=False)
channel_id = Column(Integer, nullable=False)
stickers = Column(JSON, nullable=False, default=list)