feat: add fiat checkout and nostr + email notification (#50)
* feat: fiat and email/nostr notifications * make n bake
This commit is contained in:
parent
4afc78d44d
commit
680b035ec9
9 changed files with 379 additions and 61 deletions
|
|
@ -175,3 +175,13 @@ async def m006_add_extra_fields(db):
|
|||
|
||||
# Add 'extra' column to ticket table
|
||||
await db.execute("ALTER TABLE events.ticket ADD COLUMN extra TEXT;")
|
||||
|
||||
|
||||
async def m007_add_allow_fiat(db):
|
||||
"""
|
||||
Add an allow_fiat column so event owners can explicitly enable fiat checkout.
|
||||
"""
|
||||
await db.execute("""
|
||||
ALTER TABLE events.events
|
||||
ADD COLUMN allow_fiat BOOLEAN NOT NULL DEFAULT FALSE;
|
||||
""")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue