skill-assessment-app/db/seeds.rb

21 lines
613 B
Ruby
Raw Permalink Normal View History

2016-07-26 11:59:23 -05: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 rails db:seed command (or created alongside the database with db:setup).
#
# Examples:
#
# movies = Movie.create([{ name: 'Star Wars' }, { name: 'Lord of the Rings' }])
# Character.create(name: 'Luke', movie: movies.first)
2016-07-26 17:00:00 -05:00
User.create(
name: 'admin',
2017-05-04 13:01:02 -05:00
email: 'pda.admin@mailinator.com',
2016-07-26 17:00:00 -05:00
password_digest: BCrypt::Password.create("this is the admin password"),
role: 'admin'
)
2016-08-25 19:10:58 -05:00
Quiz.create(
2017-05-04 13:01:02 -05:00
name: 'PDA Standard FED Screening',
2016-08-25 19:10:58 -05:00
unit: 'FED',
2017-05-04 13:01:02 -05:00
dept: 'PDA'
2016-08-25 19:10:58 -05:00
)