gitlab-org--gitlab-foss/db/migrate/20200905013247_add_golang_p...

10 lines
249 B
Ruby

# frozen_string_literal: true
class AddGolangPackageMaxFileSizeToPlanLimits < ActiveRecord::Migration[6.0]
DOWNTIME = false
def change
add_column(:plan_limits, :golang_max_file_size, :bigint, default: 100.megabytes, null: false)
end
end