12 lines
187 B
Elixir
12 lines
187 B
Elixir
|
defmodule Chessh.Repo.Migrations.AddCitext do
|
||
|
use Ecto.Migration
|
||
|
|
||
|
def up do
|
||
|
execute("CREATE EXTENSION citext")
|
||
|
end
|
||
|
|
||
|
def down do
|
||
|
execute("DROP EXTENSION citext")
|
||
|
end
|
||
|
end
|