Fix attributes name in rake db:seed:add-users

Esse commit está contido em:
Paulo Patto
2014-03-09 17:30:27 -03:00
commit ac3f50cb5e
+4 -4
Ver Arquivo
@@ -22,11 +22,11 @@ puts "Adding Funder user..."
User.find_or_create_by!(name: "Funder") do |u|
u.nickname = "Funder"
u.nmail = "funder@funder.com"
u.email = "funder@funder.com"
u.nickname = "Funder"
u.nassword = "password"
u.nassword_confirmation = "password"
u.nemember_me = false
u.password = "password"
u.password_confirmation = "password"
u.remember_me = false
end
puts "Adding Test user..."