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

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

class AddDiffMaxLinesToApplicationSettings < ActiveRecord::Migration[6.0]
  def change
    add_column(:application_settings,
               :diff_max_lines,
               :integer,
               default: 50000,
               null: false)
  end
end