Guest User

Untitled

a guest
Dec 16th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. class CreateQuestions < ActiveRecord::Migration[5.2]
  2. def change
  3. create_table :questions do |t|
  4. t.string :title
  5. t.references :survey, foreign_key: true
  6.  
  7. t.timestamps
  8. end
  9. end
  10. end
  11.  
  12. class CreateAnswers < ActiveRecord::Migration[5.2]
  13. def change
  14. create_table :answers do |t|
  15. t.string :response
  16. t.references :question, foreign_key: true
  17.  
  18. t.timestamps
  19. end
  20. end
  21. end
Add Comment
Please, Sign In to add comment