Commit 6b845ad7 authored by Matt Kasa's avatar Matt Kasa

Add plan limit for Terraform Module package file size

Relates to https://gitlab.com/gitlab-org/gitlab/-/issues/321102
parent 8d0ec9fb
---
title: Add plan limit for Terraform Module package file size
merge_request: 56414
author:
type: added
# 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
be22d5a1c61cbb8b2396a351951ffcee54fbf37dc5ef5f899576a36a14200e75
\ No newline at end of file
......@@ -15754,7 +15754,8 @@ CREATE TABLE plan_limits (
ci_pipeline_deployments integer DEFAULT 500 NOT NULL,
pull_mirror_interval_seconds integer DEFAULT 300 NOT NULL,
daily_invites integer DEFAULT 0 NOT NULL,
rubygems_max_file_size bigint DEFAULT '3221225472'::bigint NOT NULL
rubygems_max_file_size bigint DEFAULT '3221225472'::bigint NOT NULL,
terraform_module_max_file_size bigint DEFAULT 1073741824 NOT NULL
);
CREATE SEQUENCE plan_limits_id_seq
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment