Skip to content

Commit

Permalink
chore: fix version matcher
Browse files Browse the repository at this point in the history
  • Loading branch information
zachdaniel committed Sep 26, 2024
1 parent c46f896 commit 2644585
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/resource_generator/spec.ex
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ defmodule AshPostgres.ResourceGenerator.Spec do

defp add_indexes(spec) do
%Postgrex.Result{rows: index_rows} =
if Version.match?(spec.repo.min_pg_version(), ">= 15.0") do
if Version.match?(spec.repo.min_pg_version(), ">= 15.0.0") do
spec.repo.query!(
"""
SELECT
Expand Down

0 comments on commit 2644585

Please sign in to comment.