Files
archived-teslamate/priv/repo/migrations/20190925161034_create_index_on_address_positions.exs
2019-09-28 19:24:40 +02:00

8 lines
185 B
Elixir

defmodule TeslaMate.Repo.Migrations.CreateIndexOnAddressPositions do
use Ecto.Migration
def change do
create(index(:addresses, ["ll_to_earth(latitude, longitude)"]))
end
end