Class: CreateAnswerChoices

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

Instance Method Summary collapse

Instance Method Details

#changeObject



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

def change
  create_table :answer_choices do |t|
    t.belongs_to :answer, index: true
    t.belongs_to :choice, index: true

    t.timestamps
  end
end