Can't load Postgrex custom types with Ecto 3.0

Ah, we only use Geo.PostGIS.Geometry in the schema:

  schema "shops" do
    field :name, :string
    field :place_id, :string
    field :point, Geo.PostGIS.Geometry

and elsewhere is the app remains Geo.Point:

point: %Geo.Point{coordinates: {shop["longitude"], shop["latitude"]}, srid: 4326},

So it’s a small change after all, just important to make that distinction.