semillero-special-hotel/prisma/migrations/20260612152943_add_i18n_fields/migration.sql
gabogg 41fb0d0d75 feat: implement phase 5 settlements and i18n support
- 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
2026-06-12 19:00:46 +00:00

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;