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

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

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