- Add English/Spanish translation system for UI pages - Add bilingual AI audit notes using translation LLM chains in n8n - Support zero-trust Docker routing to dev stack via internal hostnames - Quiet down Next.js database query and middleware logging in test runs
7 lines
281 B
SQL
7 lines
281 B
SQL
-- AlterTable
|
|
ALTER TABLE "sales_results" ADD COLUMN "flagged_reason" JSONB,
|
|
ADD COLUMN "is_anomaly" BOOLEAN NOT NULL DEFAULT false;
|
|
|
|
-- AlterTable
|
|
ALTER TABLE "settlements" ADD COLUMN "ai_audit_notes" JSONB,
|
|
ADD COLUMN "ai_audited" BOOLEAN NOT NULL DEFAULT false;
|