无法弄清楚如何在 netbeans 中使用 db:seed for Rails
似乎无法让我的 seeds.rb 文件通过命令“rake db:seed”运行。我正在使用netbeans,而且我是rails的初学者,所以我可以做一些非常简单和愚蠢的事情=/。我知道你打算将 seeds.rb 文件放在 db 目录中,但 netbeans 似乎没有这个文件,或者可能已重命名它......有任何帮助吗?
can't seem to get my seeds.rb file to run through the command "rake db:seed". I'm using netbeans and I'm a beginner to rails, so I could be doing something really simple and stupid =/. I know you're meant to put your seeds.rb file in the db directory but netbeans doesn't seem to have one or might have renamed it... any help out there?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
rake 任务
db:seed
将加载Rails 环境,然后加载并执行文件db/seeds.rb
。如果您没有
db/seeds.rb
文件,请创建一个文件(如果需要,也创建db
目录)。The rake task
db:seed
will load the Rails environment and then load and execute the filedb/seeds.rb
.If you do not have a file
db/seeds.rb
, then make one (and if necessary make thedb
directory too).