lnbits-legend/lnbits/extensions/tpos/migrations.py

15 lines
296 B
Python
Raw Normal View History

2021-08-20 10:34:52 +01:00
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
);
"""
)