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

20200624075411_add_storage_size_limit_to_plan_limit.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7d1b081be0268ce44e79461f2b5c52ed471cc06a (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

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

  def change
    add_column :plan_limits, :storage_size_limit, :integer, default: 0, null: false
  end
end