ash_hq/priv/repo/migrations/20220825205416_install_pgstatstatements_extension.exs

18 lines
491 B
Elixir

defmodule AshHq.Repo.Migrations.InstallPgstatstatements 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
end
def down do
# Uncomment this if you actually want to uninstall the extensions
# when this migration is rolled back:
# execute("DROP EXTENSION IF EXISTS \"pgstatstatements\"")
end
end