docbrown/db/migrate/20200407081312_remove_unused_columns_from_poll_options.rb
rhymes bbf60f8ed2
Remove unused columns from poll options (#7124)
Co-authored-by: Ben Halpern <bendhalpern@gmail.com>
2020-04-07 13:15:45 -04:00

7 lines
192 B
Ruby

class RemoveUnusedColumnsFromPollOptions < ActiveRecord::Migration[5.2]
def change
safety_assured do
remove_column :poll_options, :counts_in_tabulation, :boolean
end
end
end