Makeup
This commit is contained in:
+4
-1
@@ -1,4 +1,7 @@
|
||||
helper = ApplicationController.helpers
|
||||
|
||||
never_signed_in = Supporter.where(sign_in_count: nil)
|
||||
never_signed_in.each_with_index { |u, i| puts "#{i} #{u.email}"; u.update_attributes password: "#{u.support}#{helper.number_with_delimiter(u.zip, delimiter: ',')}" }
|
||||
never_signed_in.each_with_index do |u, i|
|
||||
puts "#{i} #{u.email}"
|
||||
u.update_attributes password: "#{u.support}#{helper.number_with_delimiter(u.zip, delimiter: ',')}"
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user