debian-mirror-gitlab/lib/gitlab/database/migrations/observation.rb

21 lines
372 B
Ruby
Raw Normal View History

2021-12-11 22:18:48 +05:30
# rubocop:disable Naming/FileName
2021-03-11 19:13:27 +05:30
# frozen_string_literal: true
module Gitlab
module Database
module Migrations
Observation = Struct.new(
2021-10-27 15:23:28 +05:30
:version,
:name,
2021-03-11 19:13:27 +05:30
:walltime,
:success,
2021-04-17 20:07:23 +05:30
:total_database_size_change,
2022-04-04 11:22:00 +05:30
:query_statistics,
keyword_init: true
2021-03-11 19:13:27 +05:30
)
end
end
end
2021-12-11 22:18:48 +05:30
# rubocop:enable Naming/FileName