How can I avoid creating and creating an evolution script in Play Framework 2.1?

I just started the Play Framework (2.1) and copied the sample project (Zentasks) and configured it. I removed all previous classes of the view, controller, and model. When I launch the application, my browser shows the evolution of the script, and I have to run the script. But I do not want to create and execute this script, because before this application there is already my database and tables. \ In addition, there are still DDLs in the script that already deleted the tables. I deleted the evolutions directory again and again, the file was created automatically, and now I worked.

I want to understand how it works and know how to avoid this annoying?

Thank.

+5
source share
1

evolutionplugin=disabled application.conf, :

# Evolutions
# ~~~~~
# You can disable evolutions if needed
evolutionplugin=disabled

, enabled

+7

All Articles