mirror of
https://github.com/civsocit/olgram.git
synced 2023-07-22 01:29:12 +03:00
10 lines
176 B
Python
10 lines
176 B
Python
from tortoise import Model, fields
|
|
|
|
|
|
class User(Model):
|
|
id = fields.IntField(pk=True)
|
|
telegram_id = fields.IntField(index=True)
|
|
|
|
class Meta:
|
|
table = 'user'
|