I followed all the topics about disabling SQL query verification for an active record. Who knows how to disable it properly in rails 3.2.x?
Try this attempt - sends the record of the active record to null:
if Rails.env.development? ActiveRecord::Base.logger = Logger.new('/dev/null') end