0
votes
1answer
30 views
ROR Self referential has_many through with accept_nested_attributes_for
Hi. I wondered if someone could take a quick look at this. I'm making a simple conversion application which converts between units of measurement. I need to be able to self referen …
0
votes
2answers
28 views
RoR: Destroy association with has_many, :through if orphaned
Given Ryan Bates's great tutorial on Virtual Attributes, how would I go about destroying a Tag (not Tagging) if, once the article is destroyed, that Tag is no longer used?
I tried …
0
votes
1answer
36 views
Rails creating users, roles, and projects
I am still fairly new to rails and activerecord, so please excuse any oversights.
I have 3 models that I'm trying to tie together (and a 4th to actually do the tying) to create a …
1
vote
2answers
69 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 ca …
0
votes
1answer
32 views
How to provide has_many through association through 3 models?
I hope someone has already experienced this.
Please help me, how can i solve this problem:
class Article < ActiveRecord::Base
belongs_to :author
belongs_to :publisher
has …
0
votes
1answer
79 views
has_many through self referential association
I want to (as an example) create a has_many association to all posts by friends of a person, something like has_many :remote_posts to give me something like person > friends &g …
1
vote
3answers
69 views
How do I define ActiveRecord relationships between two models that relate to each other in two different ways?
In my app I have the classes User, Video, and Vote. Users and Videos can relate to each other in two different ways: as a one-to-many or as a many-to-many. The former is when a …
0
votes
2answers
32 views
Updating join table field
class Job < ActiveRecord::Base
has_many :employments, :dependent => :destroy
has_many :users, :through => :employments
class User < ActiveRecord::Base
has_many :em …
1
vote
1answer
117 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 …
0
votes
1answer
43 views
Showing join table field
Here I want to show the extra attribute CONFIRMED from the employments join table. What am I doing wrong?
class Job < ActiveRecord::Base
has_many :employments, :dependent = …
0
votes
1answer
148 views
How to save an associating record between has-many classes in Ruby on Rails
I've created three classes to represent Books, People, and BookLoans. While I am able to show the association of People to Books through BookLoans I've been seeding my database.
I …
0
votes
1answer
66 views
Ruby on Rails Has Many Through Array Problem
Hi all,
I'm having problems adding to a Has Many Through association using user_ids.
My communication model looks like this:
class communication
has_many :recipients
has_many …
0
votes
1answer
91 views
dependent => destroy on a “has_many through” association
Apparently dependent => destroy is ignored when also using the :through option.
So I have this...
class Comment < ActiveRecord::Base
has_many :comment_users, :dependent => …
0
votes
1answer
189 views
How can I update has_many :through join model attribute in Rails?
I have a model Group and model User
They are connected both directions with "has_many :through => groups_users"
groups_users table has an attribute, called moderator, specifying …
0
votes
3answers
230 views
using join model attributes in rails has_many :through
as an example, i have a model Group and model User
they are connected with :has_many, :through => groups_users
groups_users table has an attribute, called moderator, specifying w …
