Update command stats model

Stijn De Clercq 2021-09-05 16:34:31 +02:00
parent ab2df05c6d
commit 16f8fedd16
1 changed files with 3 additions and 1 deletions

View File

@ -50,7 +50,9 @@ class CommandStats(Base):
__tablename__ = "command_stats"
day = Column(Date, primary_key=True)
amount = Column(Integer)
commands = Column(Integer, default=0)
slash_commands = Column(Integer, default=0)
context_menus = Column(Integer, default=0)
class CustomCommand(Base):