Commit 4b455de3 authored by Tiger Watson's avatar Tiger Watson

Merge branch '321102-terraform-module-registry-iteration-1' into 'master'

Add plan limit for Terraform Module package file size

See merge request gitlab-org/gitlab!56414
parents 2a9367fd 6b845ad7
---
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
......@@ -15762,7 +15762,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