Packages

A library that provides the necessary modules to support the PostgreSQL’s `ltree` data type with Ecto.

Current section

Files

Jump to
ecto_ltree priv test_repo migrations 20180125154813_create_extension_ltree.exs
Raw

priv/test_repo/migrations/20180125154813_create_extension_ltree.exs

defmodule EctoLtree.TestRepo.Migrations.CreateExtensionLtree do
use Ecto.Migration
def change do
execute("CREATE EXTENSION ltree",
"DROP EXTENSION ltree")
end
end