From a0b5e0c0b3818abe7dd50314d4ad39141a2134a0 Mon Sep 17 00:00:00 2001 From: HaimKortovich Date: Mon, 4 May 2026 12:52:49 -0500 Subject: [PATCH] fix projection schema --- lib/customer_service/projections/quick_lead.ex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/customer_service/projections/quick_lead.ex b/lib/customer_service/projections/quick_lead.ex index c4f088b..7f519de 100644 --- a/lib/customer_service/projections/quick_lead.ex +++ b/lib/customer_service/projections/quick_lead.ex @@ -50,7 +50,7 @@ defmodule CustomerService.Projections.QuickLead do field :assigned_to, :string field :estimated_value, :decimal field :expected_close_date, :date - field :status_history, :map + field :status_history, {:array, :map}, default: [] timestamps() end