nordabiz/database/migrations/066_event_image_url.sql
Maciej Pienczyn 7bd34824ab
Some checks are pending
NordaBiz Tests / Unit & Integration Tests (push) Waiting to run
NordaBiz Tests / E2E Tests (Playwright) (push) Blocked by required conditions
NordaBiz Tests / Smoke Tests (Production) (push) Blocked by required conditions
NordaBiz Tests / Send Failure Notification (push) Blocked by required conditions
feat(calendar): Add image support for events
Add image_url column to NordaEvent model with migration 066.
Display event banner image above description in event detail page.
Include converted WebP image for Lean breakfast event (2026-02-20).

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-13 11:28:40 +01:00

5 lines
178 B
SQL

-- Migration 066: Add image_url column to norda_events
-- Allows events to have a banner/header image
ALTER TABLE norda_events ADD COLUMN IF NOT EXISTS image_url VARCHAR(1000);