mirror of
https://github.com/lnbits/lnbits-legend.git
synced 2025-02-24 22:58:46 +01:00
33 lines
940 B
Python
33 lines
940 B
Python
async def m001_initial(db):
|
|
"""
|
|
Initial copilot table.
|
|
"""
|
|
|
|
await db.execute(
|
|
"""
|
|
CREATE TABLE IF NOT EXISTS copilots (
|
|
id TEXT NOT NULL PRIMARY KEY,
|
|
user TEXT,
|
|
title TEXT,
|
|
lnurl_toggle INTEGER,
|
|
wallet TEXT,
|
|
animation1 TEXT,
|
|
animation2 TEXT,
|
|
animation3 TEXT,
|
|
animation1threshold INTEGER,
|
|
animation2threshold INTEGER,
|
|
animation3threshold INTEGER,
|
|
animation1webhook TEXT,
|
|
animation2webhook TEXT,
|
|
animation3webhook TEXT,
|
|
lnurl_title TEXT,
|
|
show_message INTEGER,
|
|
show_ack INTEGER,
|
|
show_price INTEGER,
|
|
amount_made INTEGER,
|
|
fullscreen_cam INTEGER,
|
|
iframe_url TEXT,
|
|
timestamp TIMESTAMP NOT NULL DEFAULT (strftime('%s', 'now'))
|
|
);
|
|
"""
|
|
)
|