Current section
Files
Jump to
Current section
Files
priv/test_repo/migrations/20180125160508_create_items.exs
defmodule EctoLtree.TestRepo.Migrations.CreateItems do
use Ecto.Migration
def change do
create table(:items) do
add :path, :ltree
end
create index(:items, [:path], using: :gist)
end
end