tap/db/seeds.rb

27 lines
860 B
Ruby
Raw Normal View History

2014-11-06 13:46:59 +00:00
# This file should contain all the record creation needed to seed the database with its default values.
# The data can then be loaded with the rake db:seed (or created alongside the db with db:setup).
#
# Examples:
#
# cities = City.create([{ name: 'Chicago' }, { name: 'Copenhagen' }])
# Mayor.create(name: 'Emanuel', city: cities.first)
2014-12-09 17:46:56 +00:00
2014-12-09 18:24:34 +00:00
User.create! name: "Mats",
2014-12-09 17:46:56 +00:00
nickname: "Basho",
last_name: "Myncke",
password: "banaan12",
2014-12-09 18:24:34 +00:00
password_confirmation: "banaan12"
2014-12-09 17:46:56 +00:00
99.times do |n|
name = Faker::Name.first_name
nickname = Faker::Name.title
last_name = Faker::Name.last_name
password = "password"
2014-12-09 18:24:34 +00:00
User.create! name: name,
2014-12-09 17:46:56 +00:00
nickname: nickname,
last_name: last_name,
2014-12-09 18:24:34 +00:00
password: password,
password_confirmation: password
2014-12-09 17:46:56 +00:00
end