ash_postgres/test/support/test_repo.ex
2020-10-06 01:39:47 -04:00

9 lines
174 B
Elixir

defmodule AshPostgres.TestRepo do
@moduledoc false
use AshPostgres.Repo,
otp_app: :ash_postgres
def installed_extensions do
["uuid-ossp", "pg_trgm"]
end
end