debian-mirror-gitlab/app/models/concerns/descendant.rb
2019-02-15 15:39:39 +05:30

12 lines
187 B
Ruby

# frozen_string_literal: true
module Descendant
extend ActiveSupport::Concern
class_methods do
def supports_nested_objects?
Gitlab::Database.postgresql?
end
end
end