Skip to content

Instantly share code, notes, and snippets.

@alexgaribay
Created September 28, 2020 17:41
Show Gist options
  • Save alexgaribay/9470243c7995a171c199a24fde80e461 to your computer and use it in GitHub Desktop.
Save alexgaribay/9470243c7995a171c199a24fde80e461 to your computer and use it in GitHub Desktop.
Enum suggestion
types = %{
my_enum: {:parameterized, Ecto.Enum, values: [:a, :b, :c]}
}
# https://github.com/elixir-ecto/ecto/blob/master/lib/ecto/type.ex#L771
defp cast_fun({:parameterized, mod, init_params}), do: &mod.cast(&1, mod.init(init_params))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment