23 November 2012
What’s annoying about heroku_san is it will run migration all the time. Not cool. Most of the times I don’t have any migration to run. Few seconds wasted waiting for the environment to load yet no migration needed.
Good thing heroku_san allows custom deploy strategy. Here’s the complete tutorial. Here’s my short version. All I want is for the deployment to just push the commit and that’s it. No need for migration and restart. So I just cut as paste from the tutorial to /lib/tasks/heroku.rake
Come to think of if, I might as well just do this instead:
Since I’m not adding anything to it. That’s it. Now deploying to heroku should not invoke rake db:migrate.
Except, it didn’t work. The gotcha? Checkout my Gemfile
Yeah, no heroku_san on production. I then just add simple check.
That should do it. Now we can deploy.