DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for: class MigrationClass < ActiveRecord::Migration[4.2] (called from require at bin/rails:4)
10 lines
255 B
Ruby
10 lines
255 B
Ruby
class CreatePollQuestionAnswers < ActiveRecord::Migration[4.2]
|
|
def change
|
|
create_table :poll_question_answers do |t|
|
|
t.string :title
|
|
t.text :description
|
|
t.references :poll_question, index: true, foreign_key: true
|
|
end
|
|
end
|
|
end
|