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

19 lines
332 B
Ruby
Raw Normal View History

2021-03-11 19:13:27 +05:30
# frozen_string_literal: true
module Gitlab
module Database
module Migrations
module Observers
def self.all_observers
[
2021-04-17 20:07:23 +05:30
TotalDatabaseSizeChange.new,
2021-06-08 01:23:25 +05:30
QueryStatistics.new,
2021-09-04 01:27:46 +05:30
QueryLog.new,
QueryDetails.new
2021-03-11 19:13:27 +05:30
]
end
end
end
end
end