nordabiz/database/migrations/063_company_logo_dark_bg.sql
Maciej Pienczyn 858eafcb97
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: add logo background toggle (dark/light) for companies
Adds a per-company setting to display logos on dark background,
useful for logos with white text or light-colored elements.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-20 19:32:22 +01:00

4 lines
213 B
SQL

-- Migration 063: Add logo_dark_bg flag to companies
-- Allows admin to mark companies whose logo looks better on dark background
ALTER TABLE companies ADD COLUMN IF NOT EXISTS logo_dark_bg BOOLEAN DEFAULT FALSE;