Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20230703121859_add_relay_state_allowlist_saml_providers.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b05059d1d61ba1b24a4c1e6bc43baf94bb26b722 (plain)
1
2
3
4
5
6
7
8
9
10
11
# 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