6 lines
131 B
Ruby
6 lines
131 B
Ruby
class Category < ActiveRecord::Base
|
|
has_many :sub_categories
|
|
has_many :filter_criterias, as: :owner
|
|
belongs_to :section
|
|
end
|