Вам нужно has_many :through Association
, а не has_and_belongs_to_many
, поскольку у вас есть дополнительные атрибуты (:number
) в модели соединения
Вы должны use has_many :through
, если вам нужны проверки, обратные вызовы или дополнительные атрибутына модели соединения. Раздел 2.8
Попробуйте этот подход:
class Home < ApplicationRecord
has_many :points
has_many :families, through: :points
end
# Point is your join model, AKA ConstantlyRefreshingModel
class Point < ApplicationRecord
belongs_to :family
belongs_to :home
validates :points, presence: true # Or some other validation, :number in your question.
end
class Family < ApplicationRecord
has_many :points
has_many :houses, through: :points
end
Миграция таблицы соединения:
class CreatePoints < ActiveRecord::Migration[5.2]
def change
create_table :points do |t|
t.references :home, foreign_key: true, null: false
t.references :family, foreign_key: true, null: false
t.string :points, null: false
t.timestamps
end
end
end
Например, имея следующие данные:
home_1 = Home.create(id: 1) # home with an id of 1
home_2 = Home.create(id: 2) # home with an id of 2
family_4 = Family.create(id: 4) # family with an id of 4
family_1 = Family.create(id: 1) # family with an id of 1
Point.create(points: "3003", home: home_2, family: family_4)
Point.create(points: "2100", home: home_1, family: family_1)
Затем:
points = Point.where(home: home_2) # you get a collection of all points assigned to house with ID: 2
points.first.family # family with an id of 4
Чтобы показать, что :home
с id: 2
и числом 3003
указывают на семью, где id: 4
home = Home.find(2)
home.families.ids # 4
home.points.first # 3003
Чтобы раскрыть семью с id: 4
связан с домом с идентификатором 2 и номером 3003.
family = Family.find(4)
family.homes.ids # 2
family.points.first # 3003
Также, attr_accessor
, attr_reader
и attr_writer
устарели в Rails 5.1
.Смотрите этот пост