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

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