allow for an image banner

This commit is contained in:
Tiago Vasconcelos 2024-01-31 13:15:52 +00:00
parent f468183631
commit ae8930f884
6 changed files with 27 additions and 6 deletions

View file

@ -153,3 +153,10 @@ async def m004_add_currency(db):
)
await db.execute("DROP TABLE events.events_old")
async def m005_add_image_banner(db):
"""
Add a column to allow an image banner for the event
"""
await db.execute("ALTER TABLE events.events ADD COLUMN banner TEXT;")