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

20160713222618_add_usage_ping_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: a7f76cc626eaf1e70a1e0137e6c83c69097ec907 (plain)
1
2
3
4
5
6
7
8
9
class AddUsagePingToApplicationSettings < ActiveRecord::Migration
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  def change
    add_column :application_settings, :usage_ping_enabled, :boolean, default: true, null: false
  end
end