bonfire-app/flavours/classic/repo/migrations/20200523081010_hello_world.exs
2021-09-23 09:19:59 +02:00

13 lines
220 B
Elixir
Executable file

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