Flowdock
method

increment!

Importance_0
v6.1.3.1 - Show latest stable - 0 notes - Class: ActiveRecord::Locking::Optimistic
increment!(*, **) 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/locking/optimistic.rb, line 63
      def increment!(*, **) #:nodoc:
        super.tap do
          if locking_enabled?
            self[self.class.locking_column] += 1
            clear_attribute_change(self.class.locking_column)
          end
        end
      end
Register or log in to add new notes.