15 lines
245 B
Python
15 lines
245 B
Python
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'
|