Files
old-ribica/front-api/models/category.rb

6 lines
131 B
Ruby
Raw Normal View History

class Category < ActiveRecord::Base
has_many :sub_categories
2015-02-07 14:48:02 +01:00
has_many :filter_criterias, as: :owner
belongs_to :section
end