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

20210527134019_add_diff_max_files_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: 60b1f74cfd0129cb8f9b276891fa7392369df44d (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

class AddDiffMaxFilesToApplicationSettings < ActiveRecord::Migration[6.0]
  def change
    add_column(:application_settings,
               :diff_max_files,
               :integer,
               default: 1000,
               null: false)
  end
end