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