6 lines
129 B
Ruby
6 lines
129 B
Ruby
class RemoveSummaryFromPollQuestion < ActiveRecord::Migration
|
|
def change
|
|
remove_column :poll_questions, :summary
|
|
end
|
|
end
|