summaryrefslogtreecommitdiff
path: root/db/migrate/20160331223143_remove_twitter_sharing_enabled_from_application_settings.rb
blob: dec80497fb31db153cfcca4406ff23314b32eb69 (plain)
1
2
3
4
5
6
# rubocop:disable all
class RemoveTwitterSharingEnabledFromApplicationSettings < ActiveRecord::Migration
  def change
    remove_column :application_settings, :twitter_sharing_enabled, :boolean
  end
end