class WowCharacterPlayRpWorld < ApplicationRecord belongs_to :wow_character belongs_to :rp_world validates :status, presence: true, format: { with: /(INVITED|PENDING|PLAYING|BANNED)/ } validates :role, presence: true, format: { with: /(PLAYER|MODERATOR|ADMIN)/ } end