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=(value)
public

No documentation available.

# File activerecord/lib/active_record/attribute_methods/dirty.rb, line 47
        def partial_writes=(value)
          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)
          self.partial_updates = self.partial_inserts = value
        end