Assuming I have two classes: ``` Animal < ApplicationRecord has_many :dogs end Dog < ApplicationRecord belongs_to :animal end ``` I can do `Animal.find(<hashid>)` ...but not `Dog.create(animal_id: <hashid>)` Is this intended?