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

# rubocop:enable Naming/FileName