mirror of
https://gitflic.ru/project/alt-gnome/karkas.git
synced 2025-04-06 17:43:49 +03:00
10 lines
223 B
Python
10 lines
223 B
Python
import peewee as pw
|
|
|
|
|
|
class Chats(pw.Model):
|
|
class Meta:
|
|
...
|
|
chat_role = pw.IntegerField(null=False, default=1)
|
|
chat_stats = pw.IntegerField(null=False)
|
|
chat_federation = pw.IntegerField(null=False)
|