method

delete_all_entries

Importance_0
v7.2.3 - Show latest stable - 0 notes - Class: InternalMetadata
delete_all_entries() 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/internal_metadata.rb, line 57
    def delete_all_entries
      dm = Arel::DeleteManager.new(arel_table)

      @pool.with_connection do |connection|
        connection.delete(dm, "#{self.class} Destroy")
      end
    end
Register or log in to add new notes.