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

20220828094411_add_rpm_max_file_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: 32489fd5bcee049e42a2dfcc2174879fcaace993 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class AddRpmMaxFileSizeToPlanLimits < Gitlab::Database::Migration[2.0]
  DOWNTIME = false

  def change
    add_column :plan_limits, :rpm_max_file_size, :bigint, default: 5.gigabytes, null: false
  end
end