I'm using postgres13 and running a somewhat old ruby on rails project, it has a few migrations and one of the first lines on those migration files is:
enable_extension "pgcrypto"
All the migrations with that fail.
After looking up online, most answers mention to download postgres-contrib package, which would in turn allow me to go into psql and create the extension.
I was only able to find that package for linux distributions. So I wonder if anyone can help me find a mac version, or some workaround.
I wonder also if I could solve this by installing an older version of postgresql that could come with this pre installed, but I'm not able to find that info anywhere. Any help appreciated.