迁移静默错误
当我运行 rake db:migrate
时,我没有得到响应。
进行跟踪时,我得到以下信息,但我不确定如何解释它:
$ rake db:migrate --trace
** Invoke db:migrate (first_time)
** Invoke environment (first_time)
** Execute environment
** Execute db:migrate
** Invoke db:schema:dump (first_time)
** Invoke environment
** Execute db:schema:dump
我正在运行 Rails 3.0.10。
When I run rake db:migrate
, I don't get a response.
Doing a trace, I get the following but I am not sure how to interpret it:
$ rake db:migrate --trace
** Invoke db:migrate (first_time)
** Invoke environment (first_time)
** Execute environment
** Execute db:migrate
** Invoke db:schema:dump (first_time)
** Invoke environment
** Execute db:schema:dump
I am running rails 3.0.10.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
正如 coreyword 所建议的,也许没有新的迁移需要运行。
当没有任何(新的)事情可做时,
rake db:migrate
命令将默默退出。As coreyword suggested, perhaps there are no new migrations to run.
The
rake db:migrate
command will exit silently when there's nothing (new) to do.