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

8 lines
127 B
Ruby
Raw Normal View History

2015-01-16 07:50:36 +01:00
class SubCategory < ActiveRecord::Base
belongs_to :category
2015-02-07 14:48:02 +01:00
has_many :filter_criterias, as: :owner
has_many :items
2015-01-16 07:50:36 +01:00
end
2015-01-22 06:38:48 +01:00