ash_admin/dev/repo.ex

12 lines
243 B
Elixir
Raw Permalink Normal View History

2020-12-08 19:22:24 +13:00
defmodule Demo.Repo do
use AshPostgres.Repo, otp_app: :ash_admin
2024-08-17 02:01:37 +12:00
def min_pg_version() do
%Version{major: 16, minor: 0, patch: 0}
end
2020-12-08 19:22:24 +13:00
def installed_extensions() do
["uuid-ossp", "pg_trgm", "citext", "ash-functions"]
2020-12-08 19:22:24 +13:00
end
end