You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
294 B
Python
18 lines
294 B
Python
4 years ago
|
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])
|