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: 9c3377571aa2bf4b25a3839ff227c2e405cc7ea8 (plain)
1
2
3
4
5
6
class AddMetricsSampleInterval < ActiveRecord::Migration[4.2]
  def change
    add_column :application_settings, :metrics_sample_interval, :integer,
      default: 15
  end
end