14 lines
236 B
Ruby
14 lines
236 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Gitlab
|
|
module Database
|
|
module Migrations
|
|
Observation = Struct.new(
|
|
:migration,
|
|
:walltime,
|
|
:success,
|
|
:total_database_size_change
|
|
)
|
|
end
|
|
end
|
|
end
|