Ruby on rails 为什么不是';我的示例数据是否上传到sqlite数据库?

Ruby on rails 为什么不是';我的示例数据是否上传到sqlite数据库?,ruby-on-rails,namespaces,sample-data,faker,Ruby On Rails,Namespaces,Sample Data,Faker,我不明白为什么这段代码没有填充我的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 Us

我不明白为什么这段代码没有填充我的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

事实上我找到了答案。以下是正确的代码:

    namespace :db do
      desc "Fill database with sample data"
      task populate: :environment do
        make_users
        make_microposts
        make_relationships
      end
    end

    def make_users
      User.create!(name:     "Example User",
                           email:    "example@railstutorial.org",
                           password: "foobar",
                           password_confirmation: "foobar")
      99.times do |n|
        name  = Faker::Name.name
        email = "example-#{n+1}@railstutorial.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