mirror of
https://gitflic.ru/project/maks1ms/ocab.git
synced 2025-03-15 23:03:58 +03:00
10 lines
220 B
Python
10 lines
220 B
Python
|
from .base import BaseModel
|
||
|
|
||
|
import peewee as pw
|
||
|
|
||
|
|
||
|
class Messages(BaseModel):
|
||
|
message_text = pw.TextField(null=False)
|
||
|
message_id_sender = pw.IntegerField(null=False)
|
||
|
answer_to_id = pw.IntegerField(null=True)
|