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
Store previous analysis before regeneration and show comparison table with priority breakdown, new/removed actions diff. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
7 lines
378 B
SQL
7 lines
378 B
SQL
-- Migration 057: Add previous analysis columns to audit_ai_cache
|
|
-- Stores the previous AI analysis before regeneration for comparison
|
|
|
|
ALTER TABLE audit_ai_cache ADD COLUMN IF NOT EXISTS previous_summary TEXT;
|
|
ALTER TABLE audit_ai_cache ADD COLUMN IF NOT EXISTS previous_actions_json JSONB;
|
|
ALTER TABLE audit_ai_cache ADD COLUMN IF NOT EXISTS previous_generated_at TIMESTAMP;
|