In Ruby on Rails, a has_many :through association is often used to set up a many-to-many connection with another model. This association indicates that the declaring model can be matched with zero or more instances of another model by proceeding through a third model.

learn more… | top users | synonyms

0
votes
0answers
7 views

Ruby on Rails has_many through from multiple sources

I have a class of User A user can have multiple files, the File class has a user_id column. The requirement is now that users can share files with other users. So a user can have their own files and ...
0
votes
0answers
10 views

rails 3 has_many :through associations, validation fired for the existing record in parent model

My models association such as Class Product has_many :deals has_many :discounts, :through => :deals before_validate :some_validation_method def some_validation_method ... end end ...
0
votes
1answer
24 views

Query has_many through association Rails

I have a has_many though association like this: User.rb has_many :memberships, :dependent => :destroy has_many :groups, :through => :memberships Group.rb has_many :users, :through => ...
0
votes
1answer
26 views

Retrieve subset of many-to-many relationship in Rails/ActiveModel

As an example, I have Doctors with many Appointments with Patients. I want to retrieve all Patients who are currently active in an Appointment: class Doctor < ActiveRecord::Base attr_accessible ...
0
votes
1answer
34 views

How to model an owner and members with a has_many :through association?

In my rails application I have Event and User models. The business rules dictate that an Event has one owner and many members, and the owner must be a member. The inverse would be User having many ...
1
vote
1answer
19 views

Many to Many relationship :through giving 'Could not find the association' error

In my model an Item is created by a User and can be purchased by many Users, and a User can purchase many Items. User, Item, and Purchase are defined, using AcvtiveRecord with superfluous details ...
0
votes
2answers
23 views

rails how to save a model with has_many through association

I am having models like // Contains the details of Parties (Users) class Party < ActiveRecord::Base has_many :party_races has_many :races, :through=>:party_races end // Contains the ...
0
votes
1answer
31 views

Rails: Issue with recieving nested forms with has many through join

I seem to be having a problem with receiving products through my join table, it's giving me a strange error as it seems to be receiving no ID for my order. I can only assume that this is because the ...
0
votes
2answers
28 views

Rails using has_many through associations

this is a noob question- i have 3 associated tables i am trying to access. The Patient model has: has_many :charts has_many :providers, :through => :charts The Provider model has: has_many ...
0
votes
1answer
36 views

rails has_many through cannot create object association

I have these models: class User < ActiveRecord::Base attr_accessible :email, :name, :roles_user_attributes has_many :roles_users has_many :roles, through: :roles_users ...
4
votes
1answer
107 views

CakePHP saveAssociated not saving HasMany Through Model Data

I'm trying to get my associated models in CakePHP 2.3 to save properly, but I'm having issues. I'm storing posts, and I want to know what links are in those posts. For each of those links, I'd like to ...
0
votes
0answers
16 views

Validate association count on join table with extra attributes

I have a join table like so: class UserSport < ActiveRecord::Base attr_accessible :athlete_id, :sport_id, :primary TOTAL_SPORT_COUNT = 5 belongs_to :athlete belongs_to :sport ...
2
votes
1answer
63 views

Using HABTM or Has_many through with Active Admin

I've read quite a few of the posts on using active admin with has_many through association but I'm not getting the desired results. Essentially I have 2 models "Conferences" & "Accounts". I need ...
1
vote
1answer
16 views

Rails 3 Editing Join Table Attributes

In my app I have an Athlete which has many sports. I am trying to build out the edit account section where the user can edit the sports they play, but am stuck. I have a Join table UserSport which ...
0
votes
1answer
22 views

Rails 3 HasMany Through with STI

Here is my STI Models: class User < ActiveRecord::Base end class Athlete < User has_many :sports, :through => :user_sports has_many :user_sports end class Coach < User end The ...
0
votes
0answers
35 views

do I need a belongs_to on a has_many through?

I have the following data: menu menu_header menu_items menu_items menu_header menu_item menu_item menu_header menu_item menu_item I have structured it ...
0
votes
0answers
36 views

Rails 4: checkboxes with a has_many through

I'm building an application which has to assign a assignment to multiple employers. I have build these models: #assignment.rb class Assignment < ActiveRecord::Base has_many ...
0
votes
1answer
34 views

How to access data from has_many :through association?

I've got two models: Patient and Provider joined through a table Chart. I used the association "has_many :through" [rather than "has_and_belongs_to_many"] because i need to have another column in the ...
1
vote
2answers
41 views

How can I use accepts_nested_attributes_for to create > 1 related object in a join table?

I have a very simple design at present, created using Ruby 2.0 and the Rails 4 beta. I have users, and groups. A User can be a member of multiple groups, and a Group can have multiple users as ...
0
votes
1answer
52 views

How to do join table for has_many through and belongs_to associations in rails?

I'm a n00b and still struggling with joins. I've got two models: Patient and Provider joined through a table Chart. I used the association "has_many :through" rather than "has_and_belongs_to_many" ...
0
votes
1answer
36 views

has_many :through with a foreign key?

I've read multiple questions about this, but have yet to find an answer that works for my situation. I have 3 models: Apps, AppsGenres and Genres Here are the pertinent fields from each of those: ...
0
votes
1answer
58 views

Rails associations: How do I limit/scope a has_many :through with multiple self-referencing conditions?

What's the best way to do this? I'm trying something like this, but it feels... wrong. (NOTE: It's all about the :conditions in the has_many association...) class Submission < ActiveRecord::Base ...
0
votes
0answers
33 views

Rails has_many through polymorphic mass assignment creating records twice

Rails 3.2.9 Ruby ruby 1.9.3dev (2011-09-23 revision 33323) [i686-linux] Models: class Client < ActiveRecord::Base attr_accessible :first_name, :middle_name, :surname # Reference: ...
0
votes
1answer
45 views

rails has_many through. doesnt get it to work

I'm trying to create a has many through association but I've must have gotten it all wrong. I believe i got the association code right but when I try to create joined records this is what I get. ...
1
vote
0answers
58 views

Rails 3 has_many through association unable to show or edit nested associations

I am new to Ruby and am learning OTJ. I have been grinding on this problem for days and have read lots of other posts regarding the has_many :through pattern. I am using RubyMine 5.4 and ...
0
votes
1answer
26 views

Can Can has_many through Explanation help need badly

Dear All (especially Ryan, thank you for this great work), I am just going completely nut with something that probably is just really stupid, but that for the life of me I can't wrap my brain around ...
0
votes
0answers
39 views

Access join model data in has_many through

I have a many to many association such as class User < ActiveRecord::Base has_many :working_groups has_many :groups, :through => :working_groups class Group < ActiveRecord::Base ...
0
votes
0answers
27 views

Unknown attributes site_site_option_ids in deeply nested form

Getting error: "unknown attribute: site_site_option_ids" when submitting the edit book form. Due to the complex nature of the association and a join table with extra fields, a simple formtastic input ...
1
vote
1answer
63 views

Accessing properties with has_many :though

In the below code I have two models that are associated via has_many :through. The Component model also belongs_to Category model. I'm trying to access the Category.title property from a Collection ...
0
votes
1answer
109 views

Rails has_many :through PG::Error: ERROR: column reference “id” is ambiguous error

I'm new to rails and I've been trying to get two has_many :though relationships to work out (as opposed to using has_and_belongs_to_many as explained by this post ...
0
votes
1answer
42 views

uninitialized constant with check_box_tag using has_many :though

I'm getting the error "uninitialized constant Collection::CollectionComponent" from the check_box_tag at "@collection.components.include?" I'm not sure why this is happening as @collection seems to ...
0
votes
1answer
38 views

Rails has_many through seems to not work

I need a second set of eyes on this. When I create a Match between two players, Tournament.players returns an empty array. Code class Tournament < ActiveRecord::Base has_many :player_matches ...
1
vote
1answer
83 views

Rails model with two polymorphic has_many through: associations for object tagging

My schema has Articles and Journals that can be tagged with Tags. This requires a has_many through: association with a polymorphic relationship to my Tagging join table. Okay, that's the easy and ...
1
vote
1answer
42 views

cakephp — getting appropriate model data in complex relationships

OK. Trying to articulate my issue as concisely as possible. I've got this massive project, for which the main purpose is generating a configuration file from Model data. I'm at a loss on how to get ...
0
votes
0answers
52 views

How to save associated record on has_many :through association

I have following connections in my Models: class Campaign belongs_to :customers_list has_many :customers, through: :customers_list end class CustomersList has_many :campaigns ...
0
votes
2answers
37 views

cakePHP associated data not retrieved

This problem's been bashing my brains for days. When i perform a find('all') on my Department model, no associated data is fetched. Here's my Department model: <?php App::uses('AppModel', ...
0
votes
1answer
53 views

Rails has_many :through dependent :destroy behaving very oddly

User: class User < ActiveRecord::Base attr_accessible :email, :username, :password, :password_confirmation, :remember_me has_many :tasks_users, :dependent => :destroy, :conditions => ...
1
vote
1answer
18 views

Form_for with radio_button generated from database

This would seem easy to do, basically I'm using Devise for administrative purposes, so every user signing up can create a product/figure linked to their account then put up that product for a trade ...
0
votes
1answer
79 views

Rails has_many through polymorphic counter cache

I have two models I link together using a polymorphic has_many through association and I would like to add a counter_cache but it seems Rails/ActiveRecord does not support this feature out of the box. ...
0
votes
1answer
59 views

Rails - has_many :through and adding existing records from one model to another

I am building an application for test case management system. I have testcases and testruns. I am joining these 2 tables through assocation model called testresults. class Testcase < ...
0
votes
1answer
92 views

ActiveAdmin / Formtastic Has Many Through with field

I have Users and Groups. Users has_many :groups, :through => Membership Groups has_many :users, :through => Membership Good so far. Membership now has a boolean field, manager. Users can be ...
0
votes
1answer
43 views

Rails has many through: create join model with two user_ids and a a type via <<

I have a user model, a task model, and a sharedItem model to join the two together. here is the code: # == Schema Information # # Table name: users # # id :integer not ...
2
votes
1answer
309 views

Many to Many Relationships with Ember, ember-data and Rails

I am having an issue with trying to save many to many relationships in Ember.js using ember-data and rails. The association works fine on the ember side of things, however when I try to commit the ...
2
votes
1answer
44 views

How to save extra field values using has_may :through

I have these models class Product < ActiveRecord::Base # fields: name, weight, expiry_date, active... has_many :categorizations has_many :categories, :through => :categorizations end ...
0
votes
3answers
53 views

Rails Model Association for a Podcast directory (Polymoprhic or HABTM)

I'm creating an app that will be a directory for podcast/radio shows (mainly, for shownotes of each show). I'm stuck on how to model the People in this app, mainly because a person can be both a guest ...
0
votes
2answers
49 views

has_one: through: does not add constructors

I'm fairly new to rails and ActiveRecord and I can't figure out why rails doesn't generate a User.build_company method for the following model setup: class User < ActiveRecord::Base has_one ...
1
vote
1answer
117 views

Cake php model relationships difficulty, esp. hasMany Through

I apologize in advance... I'm a complete noob to cakephp. As such, I'm having great difficulty in getting my models related correctly. To be more specific, I'm having the most trouble with the ...
1
vote
0answers
137 views

Rails has_many :through (with additional attributes) save issues

I have the model structure defined below. I am trying to save the additional attributes of the join table along with a user to a plan. in the rails console I do the following (for testing). I get a ...
0
votes
2answers
238 views

Displaying has_many through association as column in Active Admin index

How do I display a list of has_many_through associations with the association as the column headings and the through: value as an entry in the table row? I have 3 models: class Jobs ...
3
votes
1answer
237 views

How to create a nested form for a has_many through association using simple_form and nested form?

I have a rails app that has an album and song model with a has many through relationship. I'm trying to add songs to albums using the simple_form and nested_form gems. If I use simple_form, it's easy ...

1 2 3 4 5 12