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

20210305145622_add_terraform_module_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: d2342a665495323f8df9aba2f11764631f1222b0 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

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

  def change
    add_column :plan_limits, :terraform_module_max_file_size, :bigint, default: 1.gigabyte, null: false
  end
end