Created
February 28, 2014 18:17
-
-
Save estensland/9276602 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
User.create(email: "[email protected]", password: "1234", password_confirmation: "1234") | |
User.create(email: "[email protected]", password: "1234", password_confirmation: "1234") | |
User.create(email: "[email protected]", password: "1234", password_confirmation: "1234") | |
Survey.create(user_id: 1, title: "Favorite Animals", category: "Fun") | |
Question.create(survey_id: 1, prompt: "Favorite Snail?") | |
Question.create(survey_id: 1, prompt: "Favorite Mammal?") | |
Question.create(survey_id: 1, prompt: "Favorite Snake?") | |
Question.create(survey_id: 1, prompt: "Favorite Frog?") | |
Question.create(survey_id: 1, prompt: "Favorite Peligoose?") | |
Survey.create(user_id: 1, title: "Meal Times", category: "Food") | |
Question.create(survey_id: 2, prompt: "When do you eat dinner?") | |
Question.create(survey_id: 2, prompt: "Why do you eat lunch?") | |
Question.create(survey_id: 2, prompt: "Lunch or Supper?") | |
Question.create(survey_id: 2, prompt: "When is Brunch?") | |
Question.create(survey_id: 2, prompt: "What is your problem?") | |
Survey.create(user_id: 1, title: "TV Shows", category: "Fun") | |
Question.create(survey_id: 3, prompt: "Favorite TV Character?") | |
Question.create(survey_id: 3, prompt: "Community or Cougar Town?") | |
Question.create(survey_id: 3, prompt: "Most Hated TV Show?") | |
Question.create(survey_id: 3, prompt: "If you could kill one TV character, who would it be?") | |
Question.create(survey_id: 3, prompt: "Show you can't live without?") | |
Survey.create(user_id: 2, title: "Alex-Questions", category: "Other") | |
Question.create(survey_id: 3, prompt: "Your View On Alex's Beard:") | |
Question.create(survey_id: 3, prompt: "Where should Alex go?") | |
Question.create(survey_id: 3, prompt: "What is your least favorite thing Alex does?") | |
Survey.create(user_id: 3, title: "DBC", category: "Other") | |
Question.create(survey_id: 3, prompt: "What free food should be offered?") | |
Question.create(survey_id: 3, prompt: "Favorite Cohort") | |
Question.create(survey_id: 3, prompt: "Scariest Stuffed Animal") | |
Question.create(survey_id: 3, prompt: "Is the Yoga Room Hot?") | |
Question.create(survey_id: 3, prompt: "Where is the beef?") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment