Guest User

Untitled

a guest
Dec 11th, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. class Armor < ActiveRecord::Base
  2. attr_accessible :back_id, :character_id, :chest_id, :feet_id, :hand_id, :head_id, :legs_id, :shoulder_id, :waist_id
  3.  
  4. belongs_to :character
  5.  
  6. belongs_to :back, :class_name => 'ArmorItem'
  7. belongs_to :chest, :class_name => 'ArmorItem'
  8. belongs_to :feet, :class_name => 'ArmorItem'
  9. belongs_to :hand, :class_name => 'ArmorItem'
  10. belongs_to :head, :class_name => 'ArmorItem'
  11. belongs_to :legs, :class_name => 'ArmorItem'
  12. belongs_to :shoulder, :class_name => 'ArmorItem'
  13. belongs_to :waist, :class_name => 'ArmorItem'
  14.  
  15. end
Add Comment
Please, Sign In to add comment