gitlab-org--gitlab-foss/db/migrate/20210305145622_add_terrafor...

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

10 lines
257 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class AddTerraformModuleMaxFileSizeToPlanLimits < ActiveRecord::Migration[6.0]
DOWNTIME = false
def change
add_column :plan_limits, :terraform_module_max_file_size, :bigint, default: 1.gigabyte, null: false
end
end