Skip to content

Commit

Permalink
Updated seeds
Browse files Browse the repository at this point in the history
  • Loading branch information
sdflem committed Sep 21, 2018
1 parent 78da026 commit b087dbe
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions db/seeds.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,9 @@
#
# movies = Movie.create([{ name: 'Star Wars' }, { name: 'Lord of the Rings' }])
# Character.create(name: 'Luke', movie: movies.first)

MultipleChoiceQuestion.create!(question: 'What method do we use to create a model record?', answer: 'create', distractor_1: 'update', distractor_2: 'delete', distractor_3: 'all', distractor_4: 'find')

MultipleChoiceQuestion.create!(question: 'What does the C in MVC stand for?', answer: 'Controller', distractor_1: 'Const', distractor_2: 'Code', distractor_3: 'Create', distractor_4: 'Comm')

MultipleChoiceQuestion.create!(question: 'What method do we use to delete a model record', answer: 'delete', distractor_1: 'update', distractor_2: 'create', distractor_3: 'all', distractor_4: 'find')

0 comments on commit b087dbe

Please sign in to comment.