5 lines
90 B
Ruby
5 lines
90 B
Ruby
class Category < ActiveRecord::Base
|
|
has_many :sub_categories
|
|
belongs_to :section
|
|
end
|