Open evanthegrayt opened 3 years ago
Currently, all records are created with first_or_create!. It might be worth having a raise: false option in the seeding_method macro that would use first_or_create (no bang).
first_or_create!
raise: false
seeding_method
first_or_create
Currently, all records are created with
first_or_create!
. It might be worth having araise: false
option in theseeding_method
macro that would usefirst_or_create
(no bang).