lnbits-legend/lnbits/extensions/gerty/migrations.py
2022-09-26 16:16:41 +01:00

19 lines
No EOL
445 B
Python

async def m001_initial(db):
"""
Initial gertys table.
"""
await db.execute(
"""
CREATE TABLE gerty.gertys (
id TEXT PRIMARY KEY,
name TEXT NOT NULL,
wallet TEXT NOT NULL,
lnbits_wallets TEXT,
mempool_endpoint TEXT,
sats_quote BOOL,
exchange TEXT,
onchain_stats BOOL,
ln_stats BOOL
);
"""
)