ash_postgres/test/support/test_repo.ex

10 lines
174 B
Elixir
Raw Normal View History

2020-09-03 20:18:11 +12:00
defmodule AshPostgres.TestRepo do
@moduledoc false
use AshPostgres.Repo,
otp_app: :ash_postgres
def installed_extensions do
["uuid-ossp", "pg_trgm"]
end
2020-09-03 20:18:11 +12:00
end