mirror of
https://gitflic.ru/project/maks1ms/ocab.git
synced 2025-04-04 08:33:47 +03:00
10 lines
225 B
Python
10 lines
225 B
Python
from .base import BaseModel
|
|
|
|
import peewee as pw
|
|
|
|
|
|
class Chats(BaseModel):
|
|
chat_role = pw.IntegerField(null=False, default=1)
|
|
chat_stats = pw.IntegerField(null=False)
|
|
chat_federation = pw.IntegerField(null=False)
|