6 lines
62 B
Ruby
6 lines
62 B
Ruby
|
class ItemCategory < ActiveRecord::Base
|
||
|
|
||
|
has_many :items
|
||
|
|
||
|
end
|