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

20200916165232_add_debian_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: 9a91a5d219565b600d5dfeb722c4c29cdaeb9887 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

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

  def change
    add_column :plan_limits, :debian_max_file_size, :bigint, default: 3.gigabytes, null: false
  end
end