summaryrefslogtreecommitdiff
path: root/db/migrate/20210319071214_add_helm_max_file_size_to_plan_limits.rb
blob: 9a4789b5c1a1e38738660be5a239ac406bcce517 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

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

  def change
    add_column :plan_limits, :helm_max_file_size, :bigint, default: 5.megabyte, null: false
  end
end