Class: ActiveRecord::ConnectionAdapters::AbstractMysqlAdapter::MysqlString
- Inherits:
-
Type::String
- Object
- ActiveRecord::ConnectionAdapters::AbstractMysqlAdapter::MysqlString
- Defined in:
- lib/active_record/connection_adapters/abstract_mysql_adapter.rb
Overview
:nodoc:
Instance Method Summary collapse
Instance Method Details
#serialize(value) ⇒ Object
926 927 928 929 930 931 932 |
# File 'lib/active_record/connection_adapters/abstract_mysql_adapter.rb', line 926 def serialize(value) case value when true then MySQL::Quoting::QUOTED_TRUE when false then MySQL::Quoting::QUOTED_FALSE else super end end |