12 lines
230 B
Elixir
12 lines
230 B
Elixir
|
defmodule Wabanex.Repo.Migrations.CreateGistExtension do
|
||
|
use Ecto.Migration
|
||
|
|
||
|
def up do
|
||
|
execute("CREATE EXTENSION IF NOT EXISTS \"btree_gist\";")
|
||
|
end
|
||
|
|
||
|
def down do
|
||
|
execute("DROP EXTENSION \"btree_gist\";")
|
||
|
end
|
||
|
end
|