mirror of
https://github.com/lnbits/lnbits-legend.git
synced 2024-11-20 18:51:05 +01:00
17 lines
395 B
Python
17 lines
395 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,
|
|
exchange TEXT,
|
|
display_preferences TEXT
|
|
);
|
|
"""
|
|
) |