85c6a3743a
These two methods remove the need for manually going into ActiveRecord::Base.connection all over the place.
11 lines
247 B
Ruby
11 lines
247 B
Ruby
module Gitlab
|
|
module Database
|
|
def self.mysql?
|
|
ActiveRecord::Base.connection.adapter_name.downcase == 'mysql'
|
|
end
|
|
|
|
def self.postgresql?
|
|
ActiveRecord::Base.connection.adapter_name.downcase == 'postgresql'
|
|
end
|
|
end
|
|
end
|