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

20160419120017_add_metrics_packet_size.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c759427c59031c7c2df8bd99886db56fb2ea4e18 (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddMetricsPacketSize < ActiveRecord::Migration
  def change
    add_column :application_settings, :metrics_packet_size, :integer, default: 1
  end
end