mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
56a3d5ec91
These callbacks will already have been defined when the association was built. The check against `reflection.autosave` happens at call time, not at define time, so simply modifying the reflection is sufficient. Fixes #18704
13 lines
354 B
Ruby
13 lines
354 B
Ruby
class Treasure < ActiveRecord::Base
|
|
has_and_belongs_to_many :parrots
|
|
belongs_to :looter, :polymorphic => true
|
|
belongs_to :ship
|
|
|
|
has_many :price_estimates, :as => :estimate_of
|
|
has_and_belongs_to_many :rich_people, join_table: 'peoples_treasures', validate: false
|
|
|
|
accepts_nested_attributes_for :looter
|
|
end
|
|
|
|
class HiddenTreasure < Treasure
|
|
end
|