Flowdock
Ruby on Rails latest stable (v6.1.7.7) - 0 notes - Superclass: ActiveRecord::ActiveRecordError

Raised when a relation cannot be mutated because it’s already loaded.

class Task < ActiveRecord::Base
end

relation = Task.all
relation.loaded? # => true

# Methods which try to mutate a loaded relation fail.
relation.where!(title: 'TODO')  # => ActiveRecord::ImmutableRelation
relation.limit!(5)              # => ActiveRecord::ImmutableRelation
Show files where this class is defined (1 file)
Register or log in to add new notes.