nordabiz/database/migrations/069_company_hidden_sections.sql
Maciej Pienczyn 2c0b068428
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 section visibility toggle for company profiles
Allow company owners, managers, and admins to hide specific profile
sections from visitors. Hidden sections remain visible to authorized
users with a "Ukryta" badge. Includes migration, API endpoint,
edit UI tab, and conditional rendering for all 15 profile sections.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-17 09:59:32 +01:00

8 lines
314 B
SQL

-- Migration 069: Add hidden_sections column to companies table
-- Allows company owners/managers to hide specific profile sections from visitors
ALTER TABLE companies ADD COLUMN IF NOT EXISTS hidden_sections JSONB NOT NULL DEFAULT '[]'::jsonb;
-- Grant permissions
GRANT ALL ON TABLE companies TO nordabiz_app;