# 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