Flowdock
reset_primary_key() 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/attribute_methods/primary_key.rb, line 24
        def reset_primary_key #:nodoc:
          key = self == base_class ? get_primary_key(base_class.name) :
            base_class.primary_key

          set_primary_key(key)
          key
        end
Register or log in to add new notes.