6 lines
127 B
Ruby
6 lines
127 B
Ruby
class ItemOutfitRelationship < ActiveRecord::Base
|
|
belongs_to :item
|
|
belongs_to :outfit
|
|
|
|
validates_presence_of :item
|
|
end
|