This question already has answers here:
appending to rake db:seed in rails and running it without duplicating data

(8个答案)


7年前关闭。




我在种子文件中有一些要更改的代码,这样当我多次运行seed命令时,它不会创建重复的记录。有什么办法可以从我的种子文件中修改下面的代码,以便可行?除非我弄错了,否则find_or_create_by方法在这里似乎不起作用。
data_file = Rails.root.join('db/data/data.csv')

CSV.foreach(data_file) do |row|
  TownHealthRecord.create(
    city: row[0],
    state: row[1],
    country: row[2],
    zip_code: row[3],
    area_code: row[4]
    )
end

最佳答案

使用验证。如果您不希望重复的记录,请验证一个或多个字段的唯一性。在你town_health_record.rb

class TownHealthRecord
  validates_uniqueness_of :city
  validates uniqueness_of :health, scope: :person # If you wanted to validate a combination of fields
end

另一方面,.create!将引发错误。 .create不会。 save!.update_attributes!也是如此。

关于ruby-on-rails - 运行rake db :seed multiple times without creating duplicate records? ,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/20532844/

10-13 04:47