ash_hq/priv/repo/migrations/20220913230038_install_sslinfo_extension.exs

19 lines
469 B
Elixir
Raw Normal View History

2022-09-14 11:00:59 +12:00
defmodule AshHq.Repo.Migrations.InstallSslinfo 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
2022-09-20 09:14:15 +12:00
# Removed because fly does not support this
# execute("CREATE EXTENSION IF NOT EXISTS \"sslinfo\"")
2022-09-14 11:00:59 +12:00
end
def down do
2022-09-20 09:14:15 +12:00
# execute("DROP EXTENSION IF EXISTS \"sslinfo\"")
2022-09-14 11:00:59 +12:00
end
2022-09-16 10:35:33 +12:00
end