Closed martinmaillard closed 8 years ago
alias Ecto.Time in Timex.Ecto.Time shadows Timex.Time, which is probably not intended. It results in the following error when calling Timex.Ecto.Time.cast/1.
alias Ecto.Time
Timex.Ecto.Time
Timex.Time
Timex.Ecto.Time.cast/1
** (UndefinedFunctionError) undefined function Ecto.Time.epoch/0 stacktrace: (ecto) Ecto.Time.epoch() (timex_ecto) lib/types/time.ex:24: Timex.Ecto.Time.cast/1 [...]
Since the #18 was merged, can this issue be closed?
I'm going to go ahead and close it since a release has been pushed as well.
alias Ecto.Time
inTimex.Ecto.Time
shadowsTimex.Time
, which is probably not intended. It results in the following error when callingTimex.Ecto.Time.cast/1
.