You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
EDIT: Never mind, I was using a version of Postgres lower than the value specified in MyProject.Repo.min_pg_version/0. My mistake.
To resolve the issue, I just needed to modify MyProject.Repo.min_pg_version/0:
def min_pg_version do
- %Version{major: 16, minor: 0, patch: 0}+ %Version{major: 15, minor: 0, patch: 0}
end
I typically use Postgres Docker containers during development (currently on v15 to ensure compatibility with a remote Postgres instance), but I suspect the AshPostgres installer might have detected my Postgres client utilities that I had installed with apt-get install postgresql-client-16.