ash_postgres/priv/test_repo/migrations/20211113185738_install_3_extensions.exs

23 lines
770 B
Elixir
Raw Normal View History

2021-11-14 07:55:49 +13:00
defmodule AshPostgres.TestRepo.Migrations.Install3Extensions do
@moduledoc """
Installs any extensions that are mentioned in the repo's `installed_extensions/0` callback
This file was autogenerated with `mix ash_postgres.generate_migrations`
"""
use Ecto.Migration
def up do
execute("CREATE EXTENSION IF NOT EXISTS \"uuid-ossp\"")
execute("CREATE EXTENSION IF NOT EXISTS \"pg_trgm\"")
2021-11-14 07:55:49 +13:00
execute("CREATE EXTENSION IF NOT EXISTS \"citext\"")
end
def down do
# Uncomment this if you actually want to uninstall the extensions
2021-11-14 07:55:49 +13:00
# when this migration is rolled back:
# execute("DROP EXTENSION IF EXISTS \"uuid-ossp\"")
# execute("DROP EXTENSION IF EXISTS \"pg_trgm\"")
# execute("DROP EXTENSION IF EXISTS \"citext\"")
end
end