15 lines
243 B
Ruby
15 lines
243 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Gitlab
|
|
module Database
|
|
module Migrations
|
|
module Observers
|
|
def self.all_observers
|
|
[
|
|
TotalDatabaseSizeChange.new
|
|
]
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|