I can’t seem to get this right. My has many through relationship just isn’t working. Here’s the setup:
class Group < ActiveRecord::Base
belongs_to :user
has_many :groups_phone_numbers, :dependent => :destroy
has_many :phone_numbers, through: :groups_phone_numbers
attr_accessible :name
end
class PhoneNumber < ActiveRecord::Base
belongs_to :user
has_many :responses
has_many :groups_phone_numbers
has_many :groups, through: :groups_phone_numbers
attr_accessible :label, :number
end
class GroupPhoneNumber < ActiveRecord::Base
belongs_to :group
belongs_to :phone_number
end
I’ve tried every variant of pluralization and just can’t get past the unintialized error. What am I doing wrong? The table in the database (join model) is called groups_phone_numbers.
Exact error (g is a group):
1.9.3p0 :002 > p g.phone_numbers
NameError: uninitialized constant Group::GroupsPhoneNumber
Migration that made the join table:
class CreateGroupPhoneNumbersJoinTable < ActiveRecord::Migration
def change
create_table(:groups_phone_numbers) do |t|
t.references :group
t.references :phone_number
t.timestamps
end
end
end
Thanks
has_and_belongs_to_many could be the best choice for you, as long as you don’t need GroupPhoneNumber actually. The code is like this: