Tagged Questions

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

17
votes
2answers
13k views

Rails has_many :through Find by Extra Attributes in Join Model

New to both Ruby and Rails but I'm book educated by now (which apparently means nothing, haha). I've got two models, Event and User joined through a table EventUser class User < ...
9
votes
4answers
4k views

Ruby-on-Rails: Multiple has_many :through possible?

Is it possible to have multiple has_many :through relationships that pass through each other in Rails? I received the suggestion to do so as a solution for another question I posted, but have been ...
8
votes
3answers
2k views

Rails3 nested has_many through question

We are planning to upgrade our application to Rails3. One plugin we've used quite a bit is nested_has_many_through. This plugin seems outdated, and no longer maintained, and simply does not appear to ...
7
votes
6answers
4k views

accepts_nested_attributes_for with has_many => :through Options

I have two models, links and tags, associated through a third, link_tags. The following code is in my Link model. Associations: class Link < ActiveRecord::Base has_many :tags, :through => ...
6
votes
2answers
737 views

rails 3 has_many :through record save error

I'm not exactly sure what my problem is, so this question may require some more clarification, but here's what seems to be most relevant: I have a has_many :through and the join model has some fields ...
5
votes
1answer
268 views

Rails has many and belongs to one

I have a User model which has many projects and a Project model which can have many users, but also belongs to a single user (ie the user who created this project). It must belong to a User. It also ...
5
votes
2answers
287 views

Rails has_many :through with custom foreign_key

I have the following set of models: class Cardstock < ActiveRecord::Base has_many :color_matches, :primary_key => :hex, :foreign_key => :hex has_many :palette_colors, :through => ...
5
votes
2answers
2k views

How do I order a has_many through association in Ruby on Rails?

Given the following AR models, I would like to sort users alphabetically by last name when given a handle to a task: #user has_many :assignments has_many :tasks, :through => :assignments ...
5
votes
3answers
1k views

Specifying the foreign key in a has_many :through relationship

I have the following three models: User, Project, and Assignment. A User has_many Projects through an assignment. However, Assignment actually has two foreign keys that relate to a User: user_id ...
4
votes
3answers
142 views

Eager Loading with “has many through” — do I need Arel?

I have three tables: users, members, projects. The middle is a join table expressing a has-many-through between the other two tables; and it has some attributes of interest, including join_code and ...
4
votes
1answer
145 views

Why is my has_many through associated record (sometimes) readonly?

I have three ActiveRecord models: Partner, MembershipChannel (which is an STI model, inheriting from Channel) and ChannelMembership (I was not responsible for naming these models…) When I load a ...
4
votes
2answers
187 views

Saving join attributes through a has_many :through with :conditions

I have an Artist model that looks like this: # app/models/artist.rb class Artist < ActiveRecord::Base # Relationships has_many :releases has_many :songs, :through => :releases ...
4
votes
1answer
860 views

Has_Many :Through or :finder_sql

I've nailed down what I want, but I can't seem to get it in a way that the rails designers are looking for. Basically, I have (please set aside pluralization/etc issues): Human Relationships (Parent, ...
4
votes
4answers
257 views

Creating has_many :through records 2x times

I have models class Question < ActiveRecord::Base WEIGHTS = %w(medium hard easy) belongs_to :test has_many :answers, :dependent => :destroy has_many :testing_questions end class ...
4
votes
2answers
810 views

Rails class name/type not working for a polymorphic has_many :through

I have an invoicing system that manages debits and credits. Basically the invoice amount is obtained by the sum of its debits and the balance is derived by taking the sum of its credits and ...
4
votes
2answers
456 views

has_many :through questions

I was previously using has_and_belongs_to_many, and have converted to has_many :through. Here's how it looks for a list of games that can have many users playing. With this, I can do game.users and ...
4
votes
1answer
2k views

How can I create new records with has_many :through and honor :conditions?

Let's say I have a Course in which Students can enroll via a Membership (e.g. a has_and_belongs_to_many relationsip of Courses and Students). Some memberships are for students who are just observing ...
4
votes
1answer
1k views

Destroy associations after the last has_many :through record is deleted

With a regular has_many, there's the option of :dependent => :destroy to delete the associations when the parent record is deleted. With has_many :through, there might be other parents associated ...
3
votes
1answer
31 views

has_many :through query with both values

Let's say I have: class Post has_many :tags, :through => :taggings has_many :taggings end Notice there's no :include. Now say I want to retrieve all taggings and tags in the same query. How ...
3
votes
2answers
268 views

Rails forms for has_many through association with additional attributes?

How can I generate form fields for a has_many :through association that has additional attributes? The has_many :through relationship has an additional column called weight. Here's the migration ...
3
votes
3answers
76 views

acts_as_tree and has_many :through not working well together

I have the following: class Menu < ActiveRecord::Base has_many :menu_headers # has_many :menu_headers, :conditions => {:parent_id => 0} - was trying # to set parent_id to 0 for top ...
3
votes
1answer
38 views

Rails / Active Record has_many through association - fetching a record

I have a has_many relationship of models Role and Access through model Permission. I have a situation that no two roles should have identical accesses. So, I created a custom validation which ...
3
votes
1answer
84 views

How can I build a 'has-many-through' relation linking more than 2 models?

I have 3 models eg; TABLE `users` `id` INT `username` VARCHAR(32) ... TABLE `books` `id` INT `title` VARCHAR(100) `author` INT (foreign ket constraint) TABLE `rights` ...
3
votes
1answer
96 views

Rails: has_many through association - did I get this right?

I building a photo sharing web application using Rails 3.1. I just want to verify that I got the associations right. Some context: A User has many Share. A Share has one User (i.e the "sharer"), one ...
3
votes
1answer
106 views

has_many :through with :foreign_key

My models look like this: class Post < ActiveRecord::Base has_many :aspect_visibilities, :as => :shareable, :primary_key => :guid, :foreign_key => :shareable_guid has_many :aspects, ...
3
votes
1answer
192 views

Rails: has_many through with polymorphic association - will this work?

A Person can have many Events and each Event can have one polymorphic Eventable record. How do I specify the relationship between the Person and the Eventable record? Here are the models I have: ...
3
votes
1answer
108 views

Models -> has_many -> Twice

So I have a somewhat confusing relationship here, between a Note, Group, and User. And I ended up with has_many twice in my model. But I'm currently focused on the Note & Group relationship. ...
3
votes
1answer
742 views

Rails Has Many Through Polymorphic Checkboxes

This one's really getting me down! :( I'm trying to make a nested model form for my User model with a checkbox list in it where multiple Stores can be checked or unchecked to administer the Stores ...
3
votes
1answer
204 views

Right way to force uniqueness on a join model? (has_many :through)

I have a parent/child relationship via our users table, with models as such: class User < ActiveRecord::Base # Parents relationship has_many :children_parents, :class_name => ...
3
votes
1answer
381 views

How can one obtain a row count from has_many :through relations with :uniq => true

This is my model: class Tag < ActiveRecord::Base # id, name has_many :taggings end class Tagging < ActiveRecord::Base # id, tag_id, owner_id, target_type, target_id belongs_to :tag ...
3
votes
3answers
3k views

Using fields from an association (has_many) model with formtastic in rails

I searched and tried a lot, but I can't accomplish it as I want.. so here's my problem. class Moving < ActiveRecord::Base has_many :movingresources, :dependent => :destroy has_many ...
2
votes
1answer
31 views

How to separate cc and bcc in messages?

I'm currently trying to develop a messaging system for my website. So far the file look like this: /app/models/user.rb has_many :user_chats has_many :chats, :through => :user_chats has_many ...
2
votes
1answer
45 views

has_many :through won't save to the database

I have an association of Item & Category through Categorization: class Item < ActiveRecord::Base has_many :categorizations has_many :categories, :through => :categorizations, :source ...
2
votes
2answers
72 views

Rails: ActiveRecord::HasManyThroughSourceAssociationNotFoundError: Could not find the source association(s)

I have the following code (somewhat simplified ... create_table :signatures do |t| t.integer :signer_id t.integer :card_id t.timestamps end With the models looking like ... class Signature ...
2
votes
1answer
67 views

multiple database connections with has_many through

How can I make a has_many through work with multiple database connections? I have a database named "master" that holds the location information. That is updated from a separate application. Users ...
2
votes
2answers
208 views

TDD of has_many through Model validations with RSpec & Factory Girl

Consider the following: ScheduledSession ------> Applicant <------ ApplicantSignup Points to note: A ScheduledSession will exist in the system at all times; think of this as a class or ...
2
votes
1answer
91 views

Duplicate records when using update_attributes() and a has_many :through association

I can't figure out why it's generating duplicate recruit_profiles_skills instead of updating. class RecruitProfile < ActiveRecord::Base has_many :skills, :through => ...
2
votes
3answers
71 views

Avoiding `save!` on Has Many Through Association

I have a has_many through association with an attribute and some validations on the "join model". When I try to do something like @user.projects << @project and the association has already been ...
2
votes
1answer
49 views

Is there a Rails way or a gem to get related entries from HABTM to the same object?

Well, I have a table with images, each image is tagged with a HABTM relation through a join table. What I want to do is show related images in the page the image is being shown, by matching images ...
2
votes
1answer
118 views

how to add records to has_many :through association in rails

class Agents << ActiveRecord::Base belongs_to customer belongs_to house end class Customer << ActiveRecord::Base has_many :agents has_many :houses :through=>:agents end ...
2
votes
1answer
95 views

How to populate fields in a has_many through join table

I have a question concerning active record association, referring to this part of the rails documentation: http://guides.rubyonrails.org/association_basics.html#the-has_many-through-association if ...
2
votes
2answers
237 views

Use of HABTM along with has_many :through - Need Help Identifying Where I've Gone Wrong

About an hour ago i asked a question on rails associations: Question on Proper Associations in Rails The accepted answer from that question got me thinking about relationships more deeply and I'd ...
2
votes
1answer
379 views

Rails 3 and has_many :through: automagically set/initialize attributes on join model

I deeply searched the web in order to find a clean and simple way to deal with attributes initialization on the join model of a has_many :through relation, but I did not find a best solution for my ...
2
votes
1answer
409 views

How to setup factory in FactoryGirl with has_many association

Can someone tell me if I'm just going about the setup the wrong way? I have the following models that have has_many.through associations: class Listing < ActiveRecord::Base attr_accessible ... ...
2
votes
2answers
233 views

Rails Associations - has_many => :through - but same model

What I am trying to do: I have a blog and want to show related posts below the main post. class Post < ActiveRecord::Base has_many :related_posts has_many :posts, :through => ...
2
votes
1answer
230 views

:has_many, :through with ActiveResource models

Three models on a UserService backend Rails app: class User < ActiveRecord::Base has_many :services has_many :members has_many :groups, :through => :members has_many :managed_groups, ...
2
votes
1answer
314 views

Rails has_many :through and has_one :through associations

First I'm using Rails 3.1 from the 3-1-stable branch updated an hour ago. I'm developing an application where I have 3 essential models User, Company and Job, Here's the relevant part of the models: ...
2
votes
1answer
165 views

How to define factories for a has_many through association

I am new to testing and factory_girl, and I want to create factories using factory_girl for a has_many through association. I have seen a lot of articles on the web, but couldn't see the best way to ...
2
votes
1answer
292 views

ruby on rails after_remove, after_add callbacks on has_many :through

I have a model which fits the following pattern: class foo < ActiveRecord::Base has_many :bar, :dependent => :destroy has_many :baz, :through => :bar, :uniq => true, :after_add ...
2
votes
2answers
93 views

Removing has_many :through assocation via link

I'm trying to remove the association between an Actor and a Movie, associated through an Appearance model. I'd like to do this by clicking a link on the actor's edit page. I have found the method I ...

1 2 3 4 5 7