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

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

class AddInstanceCodeSuggestionEnabledToAppSettings < Gitlab::Database::Migration[2.1]
  def change
    add_column :application_settings, :instance_level_code_suggestions_enabled, :boolean, null: false, default: false
  end
end