13 lines
290 B
Python
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
|
|
);
|
|
"""
|
|
)
|