mirror of
https://github.com/catspace-dev/unicheckbot.git
synced 2025-02-07 14:00:33 +03:00
8 lines
209 B
Python
8 lines
209 B
Python
from tortoise import fields, Model
|
|
|
|
|
|
class User(Model):
|
|
telegram_id = fields.IntField(pk=True)
|
|
created_at = fields.DatetimeField(auto_now_add=True)
|
|
updated_at = fields.DatetimeField(auto_now=True)
|