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
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>
9 lines
266 B
SQL
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;
|