mirror of
https://github.com/lnbits/lnbits-legend.git
synced 2025-02-24 22:58:46 +01:00
14 lines
293 B
Python
14 lines
293 B
Python
def m001_initial(db):
|
|
"""
|
|
Initial tposs table.
|
|
"""
|
|
db.execute(
|
|
"""
|
|
CREATE TABLE IF NOT EXISTS tposs (
|
|
id TEXT PRIMARY KEY,
|
|
wallet TEXT NOT NULL,
|
|
name TEXT NOT NULL,
|
|
currency TEXT NOT NULL
|
|
);
|
|
"""
|
|
)
|