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

20200824045812_add_generic_package_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: eea4f8de7bf6c0f86712ed9c000a6bdf1f50cca2 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

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

  def change
    add_column(:plan_limits, :generic_packages_max_file_size, :bigint, default: 5.gigabytes, null: false)
  end
end