mirror of https://github.com/lukechilds/lnbits.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
431 B
21 lines
431 B
from lnbits.db import open_ext_db
|
|
|
|
|
|
def m001_initial(db):
|
|
"""
|
|
Initial amilks table.
|
|
"""
|
|
db.execute("""
|
|
CREATE TABLE IF NOT EXISTS amilks (
|
|
id TEXT PRIMARY KEY,
|
|
wallet TEXT NOT NULL,
|
|
lnurl TEXT NOT NULL,
|
|
atime TEXT NOT NULL,
|
|
amount INTEGER NOT NULL
|
|
);
|
|
""")
|
|
|
|
|
|
def migrate():
|
|
with open_ext_db("amilk") as db:
|
|
m001_initial(db)
|
|
|