This commit is contained in:
Administrator
2025-11-12 12:54:37 +08:00
commit a0720d80dc
3954 changed files with 1158090 additions and 0 deletions

14
models/tg_bitgit.py Normal file
View File

@@ -0,0 +1,14 @@
from models import db, BaseModel
from peewee import *
class TgBitgit(BaseModel):
id = AutoField()
tg_id = IntegerField(null=True)
url = CharField(null=True)
class Meta:
database = db
table_name = 'tg_bitgit'