Files
nairobi/db/migrate/20171003170029_remove_description_from_poll_questions.rb
2017-10-03 19:11:54 +02:00

6 lines
138 B
Ruby

class RemoveDescriptionFromPollQuestions < ActiveRecord::Migration
def change
remove_column :poll_questions, :description
end
end