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

20150213104043_add_twitter_sharing_enabled_to_application_settings.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a0439172391f07f26e4f08ee1e4ff027ad40d571 (plain)
1
2
3
4
5
class AddTwitterSharingEnabledToApplicationSettings < ActiveRecord::Migration
  def change
    add_column :application_settings, :twitter_sharing_enabled, :boolean, default: true
  end
end