bonfire-app/flavours/classic/repo/migrations/20200523081010_hello_world.exs

13 lines
220 B
Elixir
Raw Normal View History

2021-03-14 17:52:37 +00:00
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