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

12 lines
248 B
Ruby
Raw Normal View History

2015-10-24 18:46:33 +05:30
module Gitlab
module Database
def self.mysql?
2015-11-26 14:37:03 +05:30
ActiveRecord::Base.connection.adapter_name.downcase == 'mysql2'
2015-10-24 18:46:33 +05:30
end
def self.postgresql?
ActiveRecord::Base.connection.adapter_name.downcase == 'postgresql'
end
end
end