Commit 7710b3c0 authored by Krasimir Angelov's avatar Krasimir Angelov Committed by Tiger

Update structure.sql to match migration times

https://gitlab.com/gitlab-org/gitlab/-/merge_requests/68593 introduced
two new columns - `max_yaml_size_bytes` and `max_yaml_depth`. This
updates `structure.sql` and moves them at the bottom of the columns
list, in order to avoid diffs when the file is regenerated.
parent 36848426
......@@ -9606,14 +9606,14 @@ CREATE TABLE application_settings (
encrypted_customers_dot_jwt_signing_key bytea,
encrypted_customers_dot_jwt_signing_key_iv bytea,
pypi_package_requests_forwarding boolean DEFAULT true NOT NULL,
max_yaml_size_bytes bigint DEFAULT 1048576 NOT NULL,
max_yaml_depth integer DEFAULT 100 NOT NULL,
throttle_unauthenticated_files_api_requests_per_period integer DEFAULT 125 NOT NULL,
throttle_unauthenticated_files_api_period_in_seconds integer DEFAULT 15 NOT NULL,
throttle_authenticated_files_api_requests_per_period integer DEFAULT 500 NOT NULL,
throttle_authenticated_files_api_period_in_seconds integer DEFAULT 15 NOT NULL,
throttle_unauthenticated_files_api_enabled boolean DEFAULT false NOT NULL,
throttle_authenticated_files_api_enabled boolean DEFAULT false NOT NULL,
max_yaml_size_bytes bigint DEFAULT 1048576 NOT NULL,
max_yaml_depth integer DEFAULT 100 NOT NULL,
throttle_authenticated_git_lfs_requests_per_period integer DEFAULT 1000 NOT NULL,
throttle_authenticated_git_lfs_period_in_seconds integer DEFAULT 60 NOT NULL,
throttle_authenticated_git_lfs_enabled boolean DEFAULT false NOT NULL,
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