Running evolutions on Play Framework 2.0

playframeworkplayframework-2.0

This recent post, How to use Evolutions in Play Framework 2.0?, says that evolutions will automatically be applied when running Play 2.0. I've tried the play-2.0-beta download and latest git code, and I'm not seeing this behavior. In fact, I can't find any way to apply the evolutions in production mode. Am I missing something?

Best Answer

Adding applyEvolutions.default=true to your application.conf will enable evolutions by default in your application.

Related Topic