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

20210702124842_add_ci_job_trace_size_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: 561c98c449c4e7718fe25184d752c2668661f114 (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

class AddCiJobTraceSizeToPlanLimits < ActiveRecord::Migration[6.1]
  def change
    add_column(:plan_limits, :ci_jobs_trace_size_limit, :integer, default: 100, null: false)
  end
end