lnbits-legend/lnbits/extensions/discordbot/migrations.py
Bitcoin Gamer 21 0c089109b9
Edited discord bot extension to use FastAPI (#570)
Squashed 9 commits:
* Added Discordbot Extension
* Removed backup files
* Fixing renaming wallet
* added further description
* further description index.html
* import staticfiles
* remove duplicate file
* deleted changes in core
2022-05-06 20:26:42 +02:00

31 lines
639 B
Python

async def m001_initial(db):
"""
Initial users table.
"""
await db.execute(
"""
CREATE TABLE discordbot.users (
id TEXT PRIMARY KEY,
name TEXT NOT NULL,
admin TEXT NOT NULL,
discord_id TEXT
);
"""
)
"""
Initial wallets table.
"""
await db.execute(
"""
CREATE TABLE discordbot.wallets (
id TEXT PRIMARY KEY,
admin TEXT NOT NULL,
name TEXT NOT NULL,
"user" TEXT NOT NULL,
adminkey TEXT NOT NULL,
inkey TEXT NOT NULL
);
"""
)