Class: CreateQuestions

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

Instance Method Summary collapse

Instance Method Details

#changeObject



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

def change
  create_table :questions do |t|
    t.string :title
    t.integer :question_type
    t.belongs_to :survey, index: true

    t.timestamps
  end
end