David Kimura PRO said over 3 years ago on ActiveRecord Tricks :
  add a bang to User.create

User.create! do |user|
 ...
end

This won't fix the problem, but will fail and you can see what the error is.