Necesitaba hacer exactamente esto hace un tiempo y terminé usando el hecho de que puedes multiplicar intervalos con $1
.
postgres=# select interval '1 year' - interval '1 month' * 5;
?column?
----------
7 mons
(1 row)
Entonces, esto debería funcionar:
query = from ch in Child,
join: loc in assoc(ch, :location),
where: ch.birthday <= fragment("(now() AT TIME ZONE ?)::date - interval '1 month' * ?", loc.time_zone, 2)
Repo.all(query)