Под Rails, has_one
действительно "имеет максимум один". Вполне допустимо иметь все три has_one
декоратора в User
. Если вы хотите убедиться, что у них есть только один, вы можете добавить проверку, например:
class User < ActiveRecord::Base
has_one :club
has_one :team
has_one :player
validate :has_only_one
private
def has_only_one
if [club, team, player].compact.length != 1
errors.add_to_base("Must have precisely one of club, team or player")
end
end
end
Поскольку у вас есть возможность изменить таблицу пользователей в базе данных, я думаю, я бы поставил club_id
, team_id
, player_id
в users
и получу следующее:
class Club < ActiveRecord::Base
has_one :user
has_many :teams
has_many :players, :through => :teams
end
class Team < ActiveRecord::Base
has_one :user
belongs_to :club
has_many :players
end
class Player < ActiveRecord::Base
has_one :user
belongs_to :team
has_one :club, :through => :team
end
class User < ActiveRecord::Base
belongs_to :club
belongs_to :team
belongs_to :player
validate :belongs_to_only_one
def belongs_to_only_one
if [club, team, player].compact.length != 1
errors.add_to_base("Must belong to precisely one of club, team or player")
end
end
end
Я бы даже соблазнился переименовать User
в Manager
, или иметь has_one :manager, :class_name => "User"
в моделях Club
, Team
и Player
, но ваш звонок.