Files
old-ribica/back-office/app/models/sub_category.rb

6 lines
125 B
Ruby
Raw Normal View History

2015-01-16 07:50:36 +01:00
class SubCategory < ActiveRecord::Base
belongs_to :category
2015-01-18 12:34:33 +01:00
has_many :items
2015-02-07 14:48:02 +01:00
has_many :filter_criterias, as: :owner
2015-01-16 07:50:36 +01:00
end