ruby-on-rails – 多次运行rake db:seed而不创建重复记录?

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – 多次运行rake db:seed而不创建重复记录?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
参见英文答案 > appending to rake db:seed in rails and running it without duplicating data8个
我在种子文件中有一些代码,我想改变它,以便在我多次运行种子命令时不会创建重复的记录.有什么方法可以从我的种子文件中调整下面的代码,以便这可能吗?除非我弄错了,否则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不会.同样可以节省!和.update_attributes!.

原文链接:https://www.f2er.com/ruby/268207.html

猜你在找的Ruby相关文章