debian-mirror-gitlab/db/migrate/20220828094411_add_rpm_max_file_size_to_plan_limits.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
237 B
Ruby
Raw Normal View History

2022-10-11 01:57:18 +05:30
# frozen_string_literal: true
class AddRpmMaxFileSizeToPlanLimits < Gitlab::Database::Migration[2.0]
DOWNTIME = false
def change
add_column :plan_limits, :rpm_max_file_size, :bigint, default: 5.gigabytes, null: false
end
end