class Character < ApplicationRecord belongs_to :user belongs_to :activity, optional: true has_many :character_items has_many :items, through: :character_items validates :name, presence: true def shift_item(gid, amount) CharacterItem.transaction do item = self.character_items.find_or_initialize_by(item: Item.find_by_gid(gid)) item.increment(:quantity, amount) item.save end end end