6 lines
87 B
Ruby
6 lines
87 B
Ruby
class SubCategory < ActiveRecord::Base
|
|
belongs_to :category
|
|
has_many :items
|
|
|
|
end
|