ash_admin/dev/repo.ex

8 lines
166 B
Elixir
Raw Normal View History

2020-12-08 19:22:24 +13:00
defmodule Demo.Repo do
use AshPostgres.Repo, otp_app: :ash_admin
def installed_extensions() do
["uuid-ossp", "pg_trgm", "citext", "ash-functions"]
2020-12-08 19:22:24 +13:00
end
end