diff options
Diffstat (limited to 'models.py')
-rw-r--r-- | models.py | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -7,6 +7,7 @@ class Message(Base): __tablename__ = "messages" id = Column(Integer, primary_key=True, autoincrement=True) + timestamp = Column(String, nullable=False) author_id = Column(Integer, nullable=False) channel_id = Column(Integer, nullable=False) stickers = Column(JSON, nullable=False, default=list) |