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