Skip to content

Instantly share code, notes, and snippets.

@jathayde
Created December 9, 2011 18:07
Show Gist options
  • Save jathayde/1452645 to your computer and use it in GitHub Desktop.
Save jathayde/1452645 to your computer and use it in GitHub Desktop.
class Category < ActiveRecord::Base
has_many :categories, :class_name => "Category"
belongs_to :category, :class_name => "Category",
:foreign_key => "parent_id"
has_many :line_items
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment