nostrclient/migrations.py
2023-02-10 14:55:30 +01:00

13 lines
290 B
Python

async def m001_initial(db):
"""
Initial nostrclient table.
"""
await db.execute(
f"""
CREATE TABLE nostrclient.relays (
id TEXT NOT NULL PRIMARY KEY,
url TEXT NOT NULL,
active BOOLEAN DEFAULT true
);
"""
)