Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我创建了城市模型,并且我将所有需要存储在 .sql 文件中的城市表中的城市。这个 sql 文件有所有需要的“插入”语句。
所以,我想创建一个种子文件来从 sql 文件中添加所有城市。如何使用 sql 命令为数据库播种?
谢谢!
使用以下代码,您将实现您想要的
connection = ActiveRecord::Base.connection(); connection.execute("SQL COMMANDS")
那将需要进入您的 seed.rb 文件
然后你需要执行rake db:seed
rake db:seed