我不明白为什么这段代码没有填充我的 sqlite 数据库。我正在使用带有 rails 3.2 的 faker gem,并试图制作一个类似 twitter 的应用程序。任何人都可以找到问题吗?
namespace :db do
desc "Fill database with sample data"
task populate: :environment do
def make_users
User.create!(name: "Example User",
email: "example@example",
password: "foobar",
password_confirmation: "foobar")
99.times do |n|
name = Faker::Name.name
email = "example-#{n+1}@example.org"
password = "password"
User.create!(name: name,
email: email,
password: password,
password_confirmation: password)
end
end
def make_microposts
users = User.all(limit: 6)
50.times do
content = Faker::Lorem.sentence(5)
users.each { |user| user.microposts.create!(content: content) }
end
end
def make_relationships
users = User.all
user = users.first
followed_users = users[2..50]
followers = users[3..40]
followed_users.each { |followed| user.follow!(followed) }
followers.each { |follower| follower.follow!(user) }
end
end
end