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

12 lines
221 B
Elixir
Raw Normal View History

2021-11-18 22:21:08 +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-11-18 22:21:08 +00:00
end
def down do
2022-09-12 04:34:14 +00:00
execute("DROP EXTENSION IF EXISTS \"citext\"")
2021-11-18 22:21:08 +00:00
end
end