21 lines
596 B
Python
21 lines
596 B
Python
# the migration file is where you build your database tables
|
|
# If you create a new release for your extension ,
|
|
# remember the migration file is like a blockchain, never edit only add!
|
|
|
|
|
|
async def m001_initial(db):
|
|
"""
|
|
Initial templates table.
|
|
"""
|
|
await db.execute(
|
|
"""
|
|
CREATE TABLE myextension.maintable (
|
|
id TEXT PRIMARY KEY,
|
|
wallet TEXT NOT NULL,
|
|
name TEXT NOT NULL,
|
|
total INTEGER DEFAULT 0,
|
|
lnurlpayamount INTEGER DEFAULT 0,
|
|
lnurlwithdrawamount INTEGER DEFAULT 0
|
|
);
|
|
"""
|
|
)
|