mirror of
https://git.wownero.com/lza_menace/tg-bot.git
synced 2024-08-15 00:23:12 +00:00
17 lines
294 B
Python
17 lines
294 B
Python
from peewee import *
|
|
import config
|
|
|
|
|
|
db = SqliteDatabase(config.SQLITE_DB_PATH)
|
|
|
|
class BaseModel(Model):
|
|
class Meta:
|
|
database = db
|
|
|
|
class User(BaseModel):
|
|
telegram_id = IntegerField()
|
|
telegram_user = CharField()
|
|
account_index = IntegerField()
|
|
|
|
|
|
db.create_tables([User])
|