Skip to content

Instantly share code, notes, and snippets.

@roamingthings
Created December 15, 2013 09:41
Show Gist options
  • Save roamingthings/7970863 to your computer and use it in GitHub Desktop.
Save roamingthings/7970863 to your computer and use it in GitHub Desktop.
Build a tree structure in an ActiveRecord model
class TreeModel < ActiveRecord::Base
has_many :children, class_name: "TreeModel",
foreign_key: "parent_id"
belongs_to :parent, class_name: "TreeModel"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment