Elizabeth (Lizzy) Hunt
eec32aa38a
* squash all the things for bots * fix warnings * change colors a bit and README updates * fix frontend warnings
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
|