8 lines
276 B
Ruby
8 lines
276 B
Ruby
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
|