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

20200905013247_add_golang_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: 0a6d0ce73398d1b770a8eeaeaa212a038e8c92ab (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

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

  def change
    add_column(:plan_limits, :golang_max_file_size, :bigint, default: 100.megabytes, null: false)
  end
end