mirror of
https://github.com/lnbits/lnbits-legend.git
synced 2025-02-25 07:07:48 +01:00
19 lines
No EOL
445 B
Python
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
|
|
);
|
|
"""
|
|
) |