lnbits-legend/lnbits/extensions/tpos/migrations.py
2021-07-02 17:34:31 -03:00

14 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
);
"""
)