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

20230419164438_change_code_suggestions_default_false_in_namespace_settings.rb « post_migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 51042995af0f70d903df9e4a3d6ebd37a3e20767 (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

class ChangeCodeSuggestionsDefaultFalseInNamespaceSettings < Gitlab::Database::Migration[2.1]
  def change
    change_column_default :namespace_settings, :code_suggestions, from: true, to: false
  end
end