Files
nairobi/db/migrate/20161122101702_remove_question_from_poll_questions.rb
2016-11-22 11:41:10 +01:00

6 lines
132 B
Ruby

class RemoveQuestionFromPollQuestions < ActiveRecord::Migration
def change
remove_column :poll_questions, :question
end
end