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

12 lines
221 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
2022-09-12 04:34:14 +00:00
execute("CREATE EXTENSION IF NOT EXISTS \"citext\"")
2021-03-14 17:52:37 +00:00
end
def down do
2022-09-12 04:34:14 +00:00
execute("DROP EXTENSION IF EXISTS \"citext\"")
2021-03-14 17:52:37 +00:00
end
end