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