class method
self.emulate_booleans
Ruby on Rails 3.1.12
Since v3.1.12 Last seen in v3.1.12By default, the MysqlAdapter will consider all columns of type tinyint(1) as boolean. If you wish to disable this emulation (which was the default behavior in versions 0.13.1 and earlier) you can add the following line to your application.rb file:
ActiveRecord::ConnectionAdapters::MysqlAdapter.emulate_booleans = false
Source
# File activerecord/lib/active_record/connection_adapters/mysql_adapter.rb, line 161
cattr_accessor :emulate_booleans
Defined in activerecord/lib/active_record/connection_adapters/mysql_adapter.rb line 161
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in Mysql::Stmt::ActiveRecord::ConnectionAdapters::MysqlAdapter