Class: CreateAnswers

Inherits:
Object
  • Object
show all
Defined in:
lib/od/surveys/generators/templates/migrate/20180523222646_create_answers.rb

Instance Method Summary collapse

Instance Method Details

#changeObject



2
3
4
5
6
7
8
# File 'lib/od/surveys/generators/templates/migrate/20180523222646_create_answers.rb', line 2

def change
  create_table :answers do |t|
    t.string :justification
    t.belongs_to :question, index: true
    t.timestamps
  end
end