From f5ebc79593378406497ac489441498dbc5abf959 Mon Sep 17 00:00:00 2001 From: HaimKortovich Date: Mon, 4 May 2026 12:44:30 -0500 Subject: [PATCH] make quick leads array map --- priv/repo/migrations/20260430210538_add_quick_leads_table.exs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/priv/repo/migrations/20260430210538_add_quick_leads_table.exs b/priv/repo/migrations/20260430210538_add_quick_leads_table.exs index 45234dc..78087a0 100644 --- a/priv/repo/migrations/20260430210538_add_quick_leads_table.exs +++ b/priv/repo/migrations/20260430210538_add_quick_leads_table.exs @@ -15,7 +15,7 @@ defmodule CustomerService.Repo.Migrations.AddQuickLeadsTable do add :assigned_to, :string add :estimated_value, :decimal add :expected_close_date, :date - add :status_history, :map + add :status_history, {:array, :map}, default: [] timestamps() end