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: 518c2c560d25a0fe9f8f861c555c3e6fbc990bd8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# frozen_string_literal: true

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