Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20160331223143_remove_twitter_sharing_enabled_from_application_settings.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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