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

observation.rb « migrations « database « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a494c3579507b2a146138fbd59113f11d7c45c59 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# rubocop:disable Naming/FileName
# frozen_string_literal: true

module Gitlab
  module Database
    module Migrations
      Observation = Struct.new(
        :version,
        :name,
        :walltime,
        :success,
        :total_database_size_change,
        :query_statistics
      )
    end
  end
end

# rubocop:enable Naming/FileName