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

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

class AddDatabaseApdexSettingsToApplicationSettings < Gitlab::Database::Migration[2.1]
  def change
    add_column :application_settings, :database_apdex_settings, :jsonb
  end
end