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

20201204215353_add_pull_mirror_interval_to_plan_limits.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3484e4c8afa706ae283aa1d1583f1c17a2bb8c38 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class AddPullMirrorIntervalToPlanLimits < ActiveRecord::Migration[6.0]
  DOWNTIME = false

  def change
    add_column :plan_limits, :pull_mirror_interval_seconds, :integer, default: 300, null: false
  end
end