lnbits-legend/lnbits/extensions/gerty/migrations.py

18 lines
425 B
Python
Raw Normal View History

2022-09-23 14:38:55 +01:00
async def m001_initial(db):
"""
Initial Gertys table.
2022-09-23 14:38:55 +01:00
"""
await db.execute(
"""
CREATE TABLE gerty.gertys (
id TEXT PRIMARY KEY,
2022-09-29 15:08:01 +01:00
refresh_time INT,
2022-09-26 10:30:48 +01:00
name TEXT NOT NULL,
2022-09-23 14:38:55 +01:00
wallet TEXT NOT NULL,
2022-09-26 10:30:48 +01:00
lnbits_wallets TEXT,
2022-09-26 16:16:41 +01:00
mempool_endpoint TEXT,
2022-09-26 10:30:48 +01:00
exchange TEXT,
display_preferences TEXT
2022-09-23 14:38:55 +01:00
);
"""
)