diff options
author | Parker <contact@pkrm.dev> | 2025-04-03 12:23:41 -0500 |
---|---|---|
committer | Parker <contact@pkrm.dev> | 2025-04-03 12:23:41 -0500 |
commit | 3c274d2f9c13f09a7d86a3d62f6b12249a8da3f3 (patch) | |
tree | ac63348d13e774bdd9a46cf3e55bbdb4d5391bcc /models.py | |
parent | 0eaa58ab83091ab3236ae3633c9f4738d56adbe0 (diff) |
Save timestamps
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) |