You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

16 lines
349 B

from peewee import *
from tipbot import config
db = SqliteDatabase(config.SQLITE_DB_PATH)
class BaseModel(Model):
class Meta:
database = db
class User(BaseModel):
telegram_id = IntegerField(unique=True)
telegram_user = CharField(unique=True)
account_index = IntegerField(unique=True)
address = CharField(unique=True)