From 578a353d17adeffa290e36a72c146968640ac784 Mon Sep 17 00:00:00 2001 From: James Harton Date: Mon, 2 Sep 2024 09:16:19 +1200 Subject: [PATCH] chore: Update test repo to match AshPostgres requirements. --- test/support/example/repo.ex | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/test/support/example/repo.ex b/test/support/example/repo.ex index b2a21d8..5233271 100644 --- a/test/support/example/repo.ex +++ b/test/support/example/repo.ex @@ -4,4 +4,9 @@ defmodule Example.Repo do @doc false def installed_extensions, do: ["ash-functions", "uuid-ossp", "citext"] + + @doc false + def min_pg_version do + %Version{major: 16, minor: 0, patch: 0} + end end