Files
nairobi/db/migrate/20170130171322_remove_summary_from_poll_question.rb
2017-01-30 18:41:23 +01:00

6 lines
129 B
Ruby

class RemoveSummaryFromPollQuestion < ActiveRecord::Migration
def change
remove_column :poll_questions, :summary
end
end