chessh/priv/repo/migrations/20230529193453_add_citext.exs
Elizabeth (Lizzy) Hunt eec32aa38a
Bots (#23)
* squash all the things for bots

* fix warnings

* change colors a bit and README updates

* fix frontend warnings
2023-05-29 16:28:27 -07:00

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