Sha256: 882986805597d1a2a2079c68634431901f55ce1563f836dfdadd3c718cda2710

Contents?: true

Size: 707 Bytes

Versions: 10

Compression:

Stored size: 707 Bytes

Contents

# 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 bin/rails db:seed command (or created alongside the database with db:setup).
#
# User.find_or_create_by(email: "admin@admin.com") do |user|
#   user.name = 'Admin'
#   user.password = 'password'
#   user.admin = true
# end

# david = User.create(email: 'david@site.com', name: 'david', password: 'password')
# bob   = User.create(email: 'bob@site.com', name: 'bob', password: 'password')
# lisa  = User.create(email: 'lisa@site.com', name: 'lisa', password: 'password')

10.times do |i|
  Post.create(title: "Post #{i}", body: "This is the body of post #{i}")
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
rails_app_generator-0.3.6 after_templates/application/printspeak/db/seeds.rb
rails_app_generator-0.3.5 after_templates/application/printspeak/db/seeds.rb
rails_app_generator-0.3.4 after_templates/application/printspeak/db/seeds.rb
rails_app_generator-0.3.3 after_templates/application/printspeak/db/seeds.rb
rails_app_generator-0.3.2 after_templates/application/printspeak/db/seeds.rb
rails_app_generator-0.3.1 after_templates/application/printspeak/db/seeds.rb
rails_app_generator-0.3.0 after_templates/application/printspeak/db/seeds.rb
rails_app_generator-0.2.43 after_templates/application/printspeak/db/seeds.rb
rails_app_generator-0.2.42 after_templates/application/printspeak/db/seeds.rb
rails_app_generator-0.2.41 after_templates/application/printspeak/db/seeds.rb