karkas/src/ocab_modules/standard/database/models/user_stats.py

14 lines
312 B
Python

import peewee as pw
from .db import database_proxy
class UserStats(pw.Model):
class Meta:
database = database_proxy
chat_id = pw.IntegerField(null=False)
user_id = pw.IntegerField(null=False)
date = pw.DateField(null=False)
messages_count = pw.IntegerField(null=False, default=0)