summaryrefslogtreecommitdiff
path: root/lib/gitlab/database/migrations/observation.rb
blob: 228eea3393c978dc378f1876e620a41858dbd5d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# 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,
        keyword_init: true
      )
    end
  end
end

# rubocop:enable Naming/FileName