forked from OpenNeo/impress
7 lines
127 B
Ruby
7 lines
127 B
Ruby
|
class ItemOutfitRelationship < ActiveRecord::Base
|
||
|
belongs_to :item
|
||
|
belongs_to :outfit
|
||
|
|
||
|
validates_presence_of :item
|
||
|
end
|