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

20230418154454_change_code_suggestions_default_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: 77e81a7c01b91567e874e33939bf5e2c5f47ad65 (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

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