Sha256: 41914641f2fa4c469928b815810fad7f08a0a1281c1070b0063ca821314ca4cd
Contents?: true
Size: 477 Bytes
Versions: 48
Compression:
Stored size: 477 Bytes
Contents
module ActiveRecord class << Base m = Module.new do # Allow adapters to provide their own {#reset_column_information} method. # @note This only affects the current thread's connection. def reset_column_information # :nodoc: # invoke the adapter-specific reset_column_information method connection.reset_column_information if connection.respond_to?(:reset_column_information) super end end self.prepend(m) end end
Version data entries
48 entries across 48 versions & 2 rubygems