本文介绍了在 play 2 中重新生成进化脚本的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我仍在开发 Play 2 中应用程序的第一个版本.我如何重新生成进化脚本?
I am still developing first version of my application on play 2. How could I regenerate evolution scripts?
推荐答案
免责声明:它会破坏您现有的数据库并创建新数据库!
自动进化将在以下情况下自动重新生成:
The auto-evolution will auto-regenerate when:
- 您正在
dev
模式下运行您的应用 - 在
application.conf
你有这一行 not 注释:ebean.default="models.*"
- 您的evolutions文件夹中只有一个文件,它是
1.sql
- 开头有这样的评论:
- you are running your app in the
dev
mode - in
application.conf
you have this line not commented :ebean.default="models.*"
- there is only one file in your evolutions folder and it's
1.sql
- it has this comment at the beginning:
# --- 由 Ebean DDL 创建
这篇关于在 play 2 中重新生成进化脚本的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!