Flowdock
method

materialize!

Importance_0
v6.1.3.1 - Show latest stable - 0 notes - Class: RealTransaction
materialize!() public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activerecord/lib/active_record/connection_adapters/abstract/transaction.rb, line 194
      def materialize!
        if isolation_level
          connection.begin_isolated_db_transaction(isolation_level)
        else
          connection.begin_db_transaction
        end

        super
      end
Register or log in to add new notes.