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: 16c3ebfe22b43b8e488c34b5bbbf12ce81aeec59 (plain)
1
2
3
4
5
class AddMetricsPacketSize < ActiveRecord::Migration[4.2]
  def change
    add_column :application_settings, :metrics_packet_size, :integer, default: 1
  end
end