Skip to content

Instantly share code, notes, and snippets.

@mmaa
Created March 19, 2011 03:46
Show Gist options
  • Save mmaa/877202 to your computer and use it in GitHub Desktop.
Save mmaa/877202 to your computer and use it in GitHub Desktop.
class Parent
has_many :children, :as => :source
accepts_nested_attributes_for :children
end
class Child
belongs_to :source, :polymorphic => true
validates :source, :presence => :true
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment