9 lines
189 B
Ruby
9 lines
189 B
Ruby
|
|
class ItemInGroup < ActiveRecord::Base
|
||
|
|
belongs_to :item_group
|
||
|
|
belongs_to :item
|
||
|
|
|
||
|
|
validates_presence_of :item_group_id
|
||
|
|
validates_presence_of :item_id
|
||
|
|
validates_presence_of :position
|
||
|
|
end
|