method

partial_writes?

rails latest stable - Class: ActiveRecord::AttributeMethods::Dirty::ClassMethods

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v7.0.0) is shown here.

partial_writes?()
public

No documentation available.

# File activerecord/lib/active_record/attribute_methods/dirty.rb, line 39
        def partial_writes?
          ActiveSupport::Deprecation.warn(            `ActiveRecord::Base.partial_writes?` is deprecated and will be removed in Rails 7.1.            Use `partial_updates?` and `partial_inserts?` instead..squish)
          partial_updates? && partial_inserts?
        end