I've created a new Projects model for my application and everything works fine in development but in production on Heroku I receive a 500 error. The error is coming from my ProjectsController#create the error states:
2014-05-16T07:00:48.018827+00:00 app[web.1]:
2014-05-16T07:00:48.018832+00:00 app[web.1]: ActiveRecord::StatementInvalid (PG:
:UndefinedColumn: ERROR: column "taggings_count" does not exist
2014-05-16T07:00:48.018834+00:00 app[web.1]: LINE 1: UPDATE "tags" SET "taggings
_count" = COALESCE("taggings_coun...
2014-05-16T07:00:48.018835+00:00 app[web.1]:
Which is almost the exact same error as the one in this issue that I found after some searching: https://github.com/KatanaCode/blogit/issues/57. This person said they solved it by pulling these new migrations from acts_as_taggable https://github.com/mbleigh/acts-as-taggable-on/tree/master/db/migrate
I'm fairly certain that I have the same problem but I'm new to rails and not sure what he means by he pulled those migrations. Do I just update my acts_as_taggable gem and push to heroku? Can someone point me in the right direction? Thanks in advance.