Skip to content
代码片段 群组 项目
提交 5f926ee0 编辑于 作者: Steve Abrams's avatar Steve Abrams
浏览文件

Merge branch 'smriti-410062/relay_state_list_setting_addition' into 'master'

No related branches found
No related tags found
无相关合并请求
# frozen_string_literal: true
class AddRelayStateAllowlistApplicationSettings < Gitlab::Database::Migration[2.1]
def change
add_column :application_settings, :relay_state_domain_allowlist,
:text,
array: true,
default: [],
null: false
end
end
# frozen_string_literal: true
class AddRelayStateAllowlistSamlProviders < Gitlab::Database::Migration[2.1]
def change
add_column :saml_providers, :relay_state_domain_allowlist,
:text,
array: true,
default: [],
null: false
end
end
8a16b05cd573528b6e8baa2d86e761a2b431584c026918e3eda9a630b30ec727
\ No newline at end of file
149cdb7863460246fb89d02d3c8e1709bdb1d38378304d44c9a916c4bd4ee4ed
\ No newline at end of file
......@@ -11771,6 +11771,7 @@ CREATE TABLE application_settings (
gitlab_shell_operation_limit integer DEFAULT 600,
elasticsearch_requeue_workers boolean DEFAULT false NOT NULL,
elasticsearch_worker_number_of_shards integer DEFAULT 2 NOT NULL,
relay_state_domain_allowlist text[] DEFAULT '{}'::text[] NOT NULL,
CONSTRAINT app_settings_container_reg_cleanup_tags_max_list_size_positive CHECK ((container_registry_cleanup_tags_service_max_list_size >= 0)),
CONSTRAINT app_settings_container_registry_pre_import_tags_rate_positive CHECK ((container_registry_pre_import_tags_rate >= (0)::numeric)),
CONSTRAINT app_settings_dep_proxy_ttl_policies_worker_capacity_positive CHECK ((dependency_proxy_ttl_group_policy_worker_capacity >= 0)),
......@@ -22230,7 +22231,8 @@ CREATE TABLE saml_providers (
enforced_group_managed_accounts boolean DEFAULT false NOT NULL,
prohibited_outer_forks boolean DEFAULT true NOT NULL,
default_membership_role smallint DEFAULT 10 NOT NULL,
git_check_enforced boolean DEFAULT false NOT NULL
git_check_enforced boolean DEFAULT false NOT NULL,
relay_state_domain_allowlist text[] DEFAULT '{}'::text[] NOT NULL
);
 
CREATE SEQUENCE saml_providers_id_seq
0% 加载中 .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册