cd9592959f
Currently `scope_chain` uses same array for building different `scope_chain` for different associations. During processing these arrays are sometimes mutated and because of in-place mutation the changed `scope_chain` impacts other reflections. Fix is to dup the value before adding to the `scope_chain`. Fixes #3882.
4 lines
77 B
Ruby
4 lines
77 B
Ruby
class CakeDesigner < ActiveRecord::Base
|
|
has_one :chef, as: :employable
|
|
end
|