ash_admin/dev/repo.ex
2024-08-16 10:02:27 -04:00

11 lines
243 B
Elixir

defmodule Demo.Repo do
use AshPostgres.Repo, otp_app: :ash_admin
def min_pg_version() do
%Version{major: 16, minor: 0, patch: 0}
end
def installed_extensions() do
["uuid-ossp", "pg_trgm", "citext", "ash-functions"]
end
end