Tagged Questions
A has_many :through association set up a many-to-many connection with another model.
23
votes
5answers
9k views
How to create has_and_belongs_to_many associations in Factory girl
Given the following
class User < ActiveRecord::Base
has_and_belongs_to_many :companies
end
class Company < ActiveRecord::Base
has_and_belongs_to_many :users
end
how do you define ...
7
votes
3answers
6k views
Rails migration for has_and_belongs_to_many join table
How do I do a script/generate migration to create a join table for a has_and_belongs_to_many relationship?
The application runs on Rails 2.3.2, but I also have Rails 3.0.3 installed.
5
votes
2answers
213 views
MySQL INTERSECT via joins table?
So essentially I have two tables, containing URLS and TAGS, with a has-and-belongs-to-many relationship between the two via a joins tables TAGS_URLS.
A simple query to find URL's by tags would be:
...
5
votes
2answers
945 views
acts_as_list with has_and_belongs_to_many relationship
I've found an old plugin called acts_as_habtm_list - but it's for Rails 1.0.0.
Is this functionality built in acts_as_list now? I can't seem to find any information on it.
Basically, I have an ...
4
votes
3answers
825 views
rails 3 habtm delete only association
class Company
has_and_belongs_to_many :users
end
class User
has_and_belongs_to_many :companies
end
when i delete a company, what's the best (recommended) way to delete ONLY the associations of ...
3
votes
1answer
84 views
Postrgresql looking for the wrong many to many table with Rails 3
**UPDATE: I found this:
"Active Record expects intermediate join tables to be named with a concatenation of the tables it joins, in alphabetical order."
Sigh...
**
I have 3 models: images, videos ...
3
votes
1answer
325 views
Rails - HABTM Relationship — How Can I Find A Record Based On An Attribute Of The Associated Model
I have setup this HABTM relationship in the past and its worked before....Now it isnt and I'm at my wits end trying to figure out whats wrong. I've looking through the rails guides all day and cant ...
3
votes
2answers
770 views
nested form & habtm
I am trying to save to a join table in a habtm relationship, but I am having problems.
From my view, I pass in a group id with:
<%= link_to "Create New User", new_user_url(:group => 1) %>
...
3
votes
1answer
3k views
Trying to use accepts_nested_attributes_for and has_and_belongs_to_many but the join table is not being populated
I am learning RoR and trying to use accepts_nested_attributes_for and has_and_belongs_to_many to submit information that would traditionally be two forms. I have read on some sites they are ...
3
votes
1answer
459 views
Rails: How to observe join records that don't actually have a Model?
Is it possible, using an Observer, to observe the creation of JOIN records? For example, you have a User Model that has_and_belongs_to_many Book Models. Is it possible to monitor books_users records ...
2
votes
1answer
531 views
How to use HABTM fields in Active Admin filter section?
I'm using Active Admin 0.3.2, and my database schema includes a few has_and_belongs_to_many relationships. I can create and display records just fine, but attempting to include them in the filter ...
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
134 views
rails3 has_and_belongs_to_many customization
Book has_and_belongs_to_many Students
Student has_and_belongs_to_many Books
In BooksStudents model I want to add "status" field to store if it is rented, bought ..etc. and be able to select for ...
2
votes
1answer
136 views
How to set up two models having a has_many association with each other
I'm looking for a suggestion on how to set up two models, Teacher and Subject. A Teacher can have many Subjects, and a Subject can have many Teachers. Another thing to consider in the relationship ...
2
votes
1answer
559 views
Rails RESTful delete in nested resources
Okay, so here's an example scenario. There is a student resource resources :students, and students has and belongs to many collections: resources :clubs, resources :majors, etc.
So we can set up our ...
2
votes
3answers
3k views
Create join table with no primary key
I have two tables with a many to many relationship that I am using has_and_belongs_to_many to define the association.
class Foo < ActiveRecord::Base
...
has_and_belongs_to_many :bar
...
end
...
2
votes
2answers
714 views
validate presence of has_and_belongs_to_many
Hi i'm using a has_and_belongs_to_many in a model.
I want set the valitor of presence for kinds.
and set the max number of kinds per core to 3
class Core < ActiveRecord::Base
...
2
votes
3answers
737 views
Double join with habtm in ActiveRecord
I have a weird situation involving the need of a double inner join. I have tried the query I need, I just don't know how to make rails do it.
The Data
Account (has_many :sites)
Site (habtm :users, ...
2
votes
1answer
2k views
Rails has_and_belongs_to_many is confusing me with fixtures and factories
General Confusion
I have bands which can have 3 genres. I read in a previous SO post that the proper way to handle this is a couple steps:
1) In band.rb
has_and_belongs_to_many :genres
2) Create a ...
1
vote
2answers
32 views
has_and_belongs_to_many_relationship but only for non-admin users
I have a users model and a companies model. Many users to many companies. This works great for normal users. It's not so great for users with admin abilities. Admins need to see all companies. ...
1
vote
1answer
16 views
Rails / Active Record has_and_belongs_to_many association - fetching a record
I have two models User and Company associated by has_and_belongs_to_many.
I can fetch all users belonging to a certain company using
Company.find(id).users
The problem I've is finding all users ...
1
vote
0answers
43 views
How can I get CreateSchema using Castle ActiveRecord to create columns referenced by OrderBy attributes?
I'm working on a project that uses Castle ActiveRecord, and we're looking to add explicit ordering to one of the collections in the domain model.
[ActiveRecord]
public class ShortList : ...
1
vote
1answer
89 views
Rails3 has_and_belongs_to_many - error on getting an attribute from join table
Given that I have following structure:
class A < ActiveRecord::Base
has_and_belongs_to_many :bs, :class_name => "B", :join_table => "ab"
end
class AB < ActiveRecord::Base
#ab has a ...
1
vote
0answers
242 views
Rails 3: HABTM, destroy and before_destroy callback
If I have read the rails guides correctly, a before_destroy callback that returns false will stop the object being destroyed by issuing a rollback command.
However, while the object itself is not ...
1
vote
1answer
98 views
Rails ActiveRecord Double Associations
I have the following two models, User..
class User < ActiveRecord::Base
has_and_belongs_to_many :sites
end
.. and Site:
class Site< ActiveRecord::Base
has_and_belongs_to_many :users
end
...
1
vote
1answer
124 views
Using Rails' CanCan gem to handle a has_and_belongs_to_many situation
I have the following:
User model that has_and_belongs_to_many Restaurants and vice-versa.
Restaurant model that has_and_belongs_to_many Meals and vice-versa.
In my ability.rb file, I want to ...
1
vote
1answer
147 views
to_xml Doesn't Work on Objects Returned Through Rails ActiveRecord habtm Reference
I have two rails active record classes, School and Instructor linked by a has_and_belongs_to_many relationship.
I need to query my instructors_controller for instructors for a particular school and ...
1
vote
1answer
215 views
Rails 3 has_and_belongs_to_many and accepts_nested_attributes_for implementation
I need help with implementing the nested form for a has_and_belongs_to_many
I have the following:
Models
class Country < ActiveRecord::Base
has_and_belongs_to_many :categories
...
1
vote
3answers
99 views
Has and belongs to many add in view
If I have this relationship how would I add to my view so that when I create a student I am given a textbox where I can add multiple courses for the new student?
class Student < ...
1
vote
2answers
73 views
RESTful way to add an entity to another one (n:m relation) in Rails 3?
this might be a very simple problem, with an easy solution, but I did not get it yet.
Assume I have the following two models:
class Task
has_and_belongs_to_many :users
end
class User
...
1
vote
2answers
96 views
How to sort sql query without primary key?
I have table called articles_tags which have two columns:
article_id
tag_id
(has_and_belongs_to_many association) (I implemented this with php)
I want to find the last article_id that entered to ...
1
vote
1answer
334 views
Rail Model: Using validates_uniqueness_of with scope on attributes of associated entity?
I have Model defined as below
class One <Active:Record:Base
{
has_and_belongs_to_many :twos, {:join_table => 'map__ones__twos'}
}
class Two <Active:Record:Base
...
1
vote
0answers
231 views
Is validates_presence_of the preferred technique to require a has_many relationship
Basically: My model requires at least one instance of an associated model be present. Should I use validates_presence_of to assert this validation, or should I write some custom validation code?
...
1
vote
1answer
172 views
declarative authorization and has_and_belongs_to_many
I have a little problem with declarative-authorization. I have a User and Role Model with a has_and_belongs_to_many association.
I've created a Role named :moderator in my authorization_rules.rb
Is ...
1
vote
1answer
303 views
rails has_many through with independent through table
I have a User model, Person model and Company model.
a User has many companies through Person and vice versa.
But i would like to be able to populate People and Companies that are not tied to Users ...
1
vote
1answer
581 views
How to view an HABTM check box list inside a nested model
I'm running into a problem viewing a list of 'category' checkboxes when I try to nest them in a fields_for form.
I have a 'product' model that 'has_many' 'photos' which 'has_and_belongs_to_many' ...
1
vote
1answer
89 views
Two Different Types of Associatons on the Same Two Tables in Rails
I have two models, users and themes, that I'm currently joining in a HABTM association in a themes_users table. Basically, after a user creates a new theme, it becomes available to other users to ...
1
vote
1answer
86 views
Is it possible to interact with a join table, with a form's create action?
*Note to view all code, follow the link
I am creating new "accounts". Each new Account have_many :users. Users have_and_belong_to_many roles. I am trying to assign EXISTING roles to new users, in the ...
1
vote
2answers
487 views
Ordering of has_and_belongs_to_many associations
In my rails app I have two models that are related by has_and_belongs_to_many. This means there is a join table.
Imagine the scenario where I am adding users to a game. If I want to add a user, I ...
1
vote
2answers
705 views
Ruby on Rails prevent nil error when it is assumed record may not exist
I am building a simple book check out application. One of the things that I need to do is determine if a book is checked out. I have my associations between my people and book classes setup through a ...
1
vote
1answer
689 views
How can ActiveResource create HABTM relationships?
I am trying to add multiple HABTM relationships through ActiveResource, but I am running into a lot of trouble. It seems that in a traditional rails app (i.e. all ActiveRecord), you can simply set ...
1
vote
6answers
4k views
Save has_and_belongs_to_many child
I have a User model and a Role model. They are joined by a has_and_belongs_to_many relationship. When an admin creates a user I want them to be able to assign a role to the user and have it saved when ...
0
votes
0answers
32 views
Rails join table not populating
class ReminderTemplate < ActiveRecord::Base
has_and_belongs_to_many :contacts
has_and_belongs_to_many :groups
end
class Group < ActiveRecord::Base
has_and_belongs_to_many ...
0
votes
0answers
20 views
JRuby on Rails/ActiveRecord: Methods for has_and_belongs_to_many not added
I'm building a JRuby on Rails app that holds pictures and allows users to assign tags to them. Since one picture can have many tags and one tag can be associated with multiple pictures, I thought I'd ...
0
votes
1answer
29 views
How to create a new table Donor such that it belongs to another table Campaign and that their relationship is satisfied?
I am new to rails and have just been trying to build a campaign donation page. I have a single Donor object I am trying to relate to a Campaign. I have added the following to the Donor ...
0
votes
3answers
34 views
Rails has_and_belongs_to_many always inserts into database
Here is my problem:
class Facility < ActiveRecord::Base
...
has_and_belongs_to_many :languages, :autosave => false, :join_table => 'facilities_languages'
...
end
When I do something like ...
0
votes
1answer
20 views
Relationships between 2-3 models
I have following models:
User
has_many :roles, :through => :assignments
Role
has_many :assignments
has_many :users, :through => :assignments
Assignment
belongs_to :user
...
0
votes
0answers
38 views
has_and_belongs_to external database join
This may be a case where I need to use has_many :through, but I'd prefer not to as this is a simple join table without attributes case.
My provider table is in an external database:
class Provider ...
0
votes
1answer
40 views
Associating a model with another without nested resources
Let's say I have a Post model and a Comments model where in the routes file I'm declaring
resources :posts
resources :comments
NOT
resources :posts do
resources :comments
end
Also:
class Post ...
0
votes
1answer
116 views
RoR 3 Creating an Invoice app - How do I create the form for a HABTM invoice/products association?
I'm attempting to make an invoice application. Here are my models which are related to my question:
UPDATE: Model information has changed due to recent suggestions
Invoice
> id
> ...