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

20230407164616_add_code_suggestions_to_namespace_settings.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ce500fec2f0020dd594072439bd07d9095870f4f (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class AddCodeSuggestionsToNamespaceSettings < Gitlab::Database::Migration[2.1]
  enable_lock_retries!

  def change
    add_column :namespace_settings, :code_suggestions, :boolean, default: false, null: false
  end
end