mirror of
https://github.com/teslamate-org/teslamate.git
synced 2026-01-24 21:06:08 +08:00
8 lines
185 B
Elixir
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
|