notebook/app/models/page_groupers/character_enemy.rb
2020-04-24 02:16:05 -05:00

7 lines
169 B
Ruby

class CharacterEnemy < ApplicationRecord
belongs_to :user, optional: true
belongs_to :character
belongs_to :enemy, class_name: Character.name, optional: true
end