nordabiz/database/migrations/072_company_admin_notes.sql
Maciej Pienczyn 893ccf7551
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 admin_notes field to companies for internal admin notes
Adds editable admin notes to company edit modal in admin panel,
with visual indicator (pencil icon) in companies table.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-18 19:47:59 +01:00

9 lines
266 B
SQL

-- Migration 072: Add admin_notes to companies
-- Admin-only internal notes field, not visible to regular users
-- Date: 2026-02-18
ALTER TABLE companies ADD COLUMN IF NOT EXISTS admin_notes TEXT;
-- Grant permissions
GRANT ALL ON TABLE companies TO nordabiz_app;