Skip to content

Instantly share code, notes, and snippets.

@joselo
Created February 9, 2012 03:29
Show Gist options
  • Save joselo/1777034 to your computer and use it in GitHub Desktop.
Save joselo/1777034 to your computer and use it in GitHub Desktop.
Category
class Category < ActiveRecord::Base
has_many :children, :class_name => "Category", :dependent => :destroy, :foreign_key => "parent_id"
belongs_to :parent, :class_name => "Category"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment