mirror of
https://git.wownero.com/lza_menace/lza-wowbot.git
synced 2024-08-15 03:23:51 +00:00
15 lines
280 B
Python
15 lines
280 B
Python
import datetime
|
|
from peewee import *
|
|
import config
|
|
|
|
|
|
db = SqliteDatabase(config.SQLITE_DB_PATH)
|
|
|
|
class BaseModel(Model):
|
|
class Meta:
|
|
database = db
|
|
|
|
class User(BaseModel):
|
|
irc_nick = CharField()
|
|
account_index = IntegerField()
|
|
address_index = IntegerField()
|