mirror of
https://github.com/lnbits/lnbits-legend.git
synced 2024-11-20 02:28:10 +01:00
14 lines
318 B
Python
14 lines
318 B
Python
async def m001_initial(db):
|
|
"""
|
|
Initial scrub table.
|
|
"""
|
|
await db.execute(
|
|
f"""
|
|
CREATE TABLE scrub.scrub_links (
|
|
id TEXT PRIMARY KEY,
|
|
wallet TEXT NOT NULL,
|
|
description TEXT NOT NULL,
|
|
payoraddress TEXT NOT NULL
|
|
);
|
|
"""
|
|
) |