bonfire-app/flavours/classic/repo/migrations/20200523081010_citext.exs
Mayel de Borniol 0ef85e77f9 auto-format
2022-09-12 16:34:14 +12:00

12 lines
221 B
Elixir

defmodule Bonfire.Repo.Migrations.HelloWorld do
use Ecto.Migration
def up do
execute("CREATE EXTENSION IF NOT EXISTS \"citext\"")
end
def down do
execute("DROP EXTENSION IF EXISTS \"citext\"")
end
end