18 lines
332 B
Ruby
18 lines
332 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Gitlab
|
|
module Database
|
|
module Migrations
|
|
module Observers
|
|
def self.all_observers
|
|
[
|
|
TotalDatabaseSizeChange.new,
|
|
QueryStatistics.new,
|
|
QueryLog.new,
|
|
QueryDetails.new
|
|
]
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|