Reputation: 12663
I have a Rails app that includes pg_search and queue_classic gems. Both of these make use of PostgreSQL extensions e.g., unaccent, pg_trgm and ps-something-something (sorry, not as my dev machine and can not remember).
I'm deploying to Heroku, and having trouble running my migrations that exceute these extensions
e.g.,
def up
execute "create extension unaccent"
execute "create extension pg_trgm"
end
I get the impression that Heroku supports these from here https://devcenter.heroku.com/articles/full-text-search and the fact that Heroku uses queue_classic https://github.com/ryandotsmith/queue_classic.
I've been unable to find any information that explains how to make use of these postgres extensions on Heroku. Or even if they are available for shared databases or only dedicated.
So my questions:
Really appreciate any ideas, especially those accompanied with pointers to relevant information/ instructions.
Thanks
Upvotes: 6
Views: 2647
Reputation: 22240
If you're using the old standard shared database plans then these probably won't work so you need to look at bumping up to the new shared plans or the production plans.
Upvotes: 4