2015-10-07 06:30:10 -04:00
|
|
|
module Gitlab
|
|
|
|
module Database
|
|
|
|
def self.mysql?
|
2015-10-22 04:18:44 -04:00
|
|
|
ActiveRecord::Base.connection.adapter_name.downcase == 'mysql2'
|
2015-10-07 06:30:10 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def self.postgresql?
|
|
|
|
ActiveRecord::Base.connection.adapter_name.downcase == 'postgresql'
|
|
|
|
end
|
2015-12-09 10:31:42 -05:00
|
|
|
|
|
|
|
def true_value
|
|
|
|
case ActiveRecord::Base.connection.adapter_name.downcase
|
|
|
|
when 'postgresql'
|
|
|
|
"'t'"
|
|
|
|
else
|
|
|
|
1
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def false_value
|
|
|
|
case ActiveRecord::Base.connection.adapter_name.downcase
|
|
|
|
when 'postgresql'
|
|
|
|
"'f'"
|
|
|
|
else
|
|
|
|
0
|
|
|
|
end
|
|
|
|
end
|
2015-10-07 06:30:10 -04:00
|
|
|
end
|
|
|
|
end
|