I have a simple model that mounts a Carrierwave uploader. Everything works fine in development, but I get an undefined method \"image_will_change!\" error on heroku.
<
It's probably because you forgot to run:
rake db:migrate
It's likely that your db on heroku doesn't have the image column in the receipts table.
Even after running the migration on heroku, the error persisted.
I found that a heroku restart command was required to vanquish the error forever.
heroku restart