Tagged Questions
habtm - has_and_belongs_to_many relationship for models (tables) in Ruby in Rails
12
votes
4answers
5k views
has_and_belongs_to_many in Rails
Is there anything explicitly wrong with using has_and_belongs_to_many associations in rails instead of has_many :through? I'm aware of these articles describing differences and work arounds, but they ...
6
votes
4answers
593 views
What is the fastest way to create mass HABTM associations in Rails?
I have two tables, with a HABTM relationship in Rails. Something like the following:
class Foo < ActiveRecord::Base
has_and_belongs_to_many :bars
end
class Bar < ActiveRecord::Base
...
6
votes
1answer
879 views
Is there a RESTful way to configure routes for habtm?
In Rails you can use nested routes to create RESTful routes for has_one and has_many relationships. Examples can be found on the Rails Guides
I'd like to ask if there is a good way to configure ...
5
votes
2answers
823 views
Rails: Has and belongs to many (HABTM) — create association without creating other records
Spent all day on Google, but can't find an answer. :\
I have a HABTM relationship between Users and Core_Values.
class CoreValue < ActiveRecord::Base
has_and_belongs_to_many :users
class User ...
5
votes
2answers
473 views
HABTM, or multiple belongs_to?
I'm teaching myself Rails, and as a test project I'm mocking up a simple question/answer app similar to stackoverflow.
In my simplified version I have:
questions
answers
users (the authors of ...
4
votes
5answers
469 views
CakePHP - problem with HABTM paginate query
Tables
restaurants
cuisines
cuisines_restaurants
Both restaurant and cuisine model are set up to HABTM each other.
I'm trying to get a paginated list of restaurants where Cuisine.name = 'italian' ...
4
votes
1answer
177 views
Rails habtm callbacks
Is there a way to add callbacks for when an item is added to a habtm relationship?
For example, I have the following two models, User and Role:
# user.rb
class User; has_and_belongs_to_many :roles; ...
4
votes
5answers
300 views
How can I find all records for a model without doing a long list of “OR” conditions?
I'm having trouble composing a CakePHP find() which returns the records I'm looking for.
My associations go like this:
User ->(has many)-> Friends ,
User ->(has many)-> Posts
I'm trying to display ...
4
votes
1answer
1k views
Cakephp retrieving HABTM which Conditions
I'm using cakephp and would like to display all Submissions which are part of Category 'X'
I have 4 tables with a HABTM relationship.
Users -> (haveMany) -> Submissions <-> (hasAndBelongsToMany) ...
4
votes
5answers
15k views
CakePHP find() based on HABTM relationships
I'm working on a CakePHP 1.2 application. I have a model "User" defined with a few HABTM relationships with other tables through a join table.
I'm now tasked with finding User information based on ...
4
votes
1answer
2k views
Rails Associations, habtm? Polymorphic? Both?
In my Rails app I have three models, Projects, BlogPosts and Images. Projects and BlogPosts can have many linked images and an image can be linked to a Project, a BlogPost or both.
What is the best ...
4
votes
4answers
3k views
Has and belongs to many relationship with multiple databases
I have a situation where I have two models, companies and permissions, where companies is in a separate database from my permissions database. This is a has and belongs to many relationship because ...
3
votes
2answers
1k views
Rails 3 has_and_belongs_to_many migration
I have two models restaurant and user that I want to perform a has_and_belongs_to_many relationship.
I have already gone into the model files and added the has_and_belongs_to_many :restaurants and ...
3
votes
2answers
153 views
HABTM best practice
I have 2 main entities, UserProfile and Property. Basically, the UserProfile needs to maintain 3 different lists of Properties (note, each list type will have additional properties)
Does anyone see ...
3
votes
2answers
766 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) %>
...
2
votes
3answers
162 views
Translate this monsterous query w/HABTM related data into a CakePHP find
It's late and I have written this monstrosity of a query to get related products based on a product I have already found.
I need to fetch the products in the same category (HABTM), the parent ...
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
3answers
619 views
ActiveAdmin - implement HABTM / multidimensional array in DSL
In my application everything works fine, but in my Active Admin backend I don't get my user roles displayed on screen.
I have two models "User" and "Roles":
class Role < ActiveRecord::Base
...
2
votes
1answer
119 views
Rails HABTM and belongs_to for associating users/projects
I have a User and Project model. A user can have multiple projects, and a project can have multiple users. This of course is simple with a has_and_belongs_to_many association. My problem is that I'd ...
2
votes
2answers
177 views
accpets_nested_attributes_for, HABTM, and find_or_create
I'm using Rails' accepts_nested_attributes_for method with great success, but how can I have it not create new records if a record already exists?
I have found this article, ...
2
votes
1answer
66 views
Rails: efficiently check if keywords in a model match content in another model?
How can I efficiently check several thousand rows against a table of keywords?
I have two tables, Essays and Tags. They are tied together by a has_and_belongs_to_many association.
Tags has around ...
2
votes
2answers
402 views
Rails 3 HABTM find by record associated model attribute
I think this is really basic but I'm horrible with SQL so I have no idea how to do it...
I have a standard HABTM relationship between two models, LandUse and Photo. So I have a land_uses_photos join ...
2
votes
1answer
51 views
CakePHP: finding information in distantly related models
I have a News model, which has a HABTM relationship with an Artists model, and an artist in turn hasMany tourdates.
If I want to find all tourdates related to the current news item, what is an ...
2
votes
2answers
414 views
Default_scope on a join table
I've got a model setup like the following:
class User
has_many :items
has_many :words, :through => :items
end
class Item
belongs_to :user
belongs_to :word
default_scope where(:active ...
2
votes
1answer
359 views
Records in join table destroyed automatically in HABTM association?
Let's say I have an association where User has and belongs to many Roles. When I destroy the user, is the record in the join table automatically removed as well? Or do I need to use :dependent => ...
2
votes
1answer
783 views
cakephp 1.3 paginating habtm related data
I have searched high and low and tried multiple different solutions to this and I cannot seem to get it to work.
Basically I have products and categories.
Categories has and belongs to many products, ...
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
0answers
458 views
Rails3 + Typus: display habtm relationship as checkboxes
I'm managing my admin backend with Typus
I want to add a field with a checkbox for each category.
I used this code:
Post:
fields:
default: name, description, user, categories
list: name, ...
2
votes
1answer
164 views
How can I join the same 2 models twice in Rails?
I have an app with country preferences. A user will have 2 types of country preferences - event and research. In the future there may be more. I was leaning more towards having 2 tables to ...
2
votes
1answer
689 views
Cake HABTM Query, Order By Rand()
I'm aware that Cake HABTM associations are tricky at the best of times, but I seem to be making life even harder for myself...
If I want to return a random Item from the db, I can do it as follows in ...
2
votes
1answer
220 views
Cakephp retrieve data in HABTM association
I have 2 tables subscribers and distribution list and the relationship between them is HABTM. Now here particular users are associated to distribution list, i wish to add more users, but when adding ...
2
votes
2answers
971 views
Simulating has_and_belongs_to_many nested through behavior in Rails 3
So Rails doesn't have support for :through associations through a habtm relationship. There are plugins out there that will add this in for Rails 2.x, but I'm using Rails 3 / Edge, and only need the ...
2
votes
1answer
1k views
CakePHP hasAndBelongsToMany (HABTM) Delete Joining Record
I have a HABTM relationship between Users and Locations. Both Models have the appropriate $hasAndBelongsToMany variable set.
When I managing User Locations, I want to delete the association between ...
2
votes
3answers
844 views
Rails has_and_belongs_to_many relationship question
I'm sure that this question has been asked somewhere before, as the habtm relationship seems to be very confusing.
I have two models, users and promotions. The idea is that a promotion can have many ...
2
votes
1answer
603 views
Ruby on Rails: How to find all items with a hash that contain a specific value
Suppose I have three models: Student, SchoolClass, and DayOfWeek. There is a HABTM relationship between Student and SchoolClass, and between SchoolClass and DayOfWeek. What I'd like to do is find all ...
2
votes
1answer
636 views
Rails Single Table Inheritance with HABTM Fixture in unit testing returning NoMethodError: undefined method `singularize'
Imagine a model structure as follows:
models/cross_sell_promotion.rb
class CrossSellPromotion < Promotion
has_and_belongs_to_many :afflicted_products, :join_table => ...
2
votes
2answers
1k views
RSpec testing relationship logic
I'm testing the following:
Account
class Account < ActiveRecord::Base
has_many :ownerships
has_many :brands, :through => :ownerships
end
Ownership join model
class Ownership < ...
2
votes
2answers
205 views
HABTM Query help
I have a HABTM relationship between 'articles' and 'tags'
Problem: I'm only looking for articles with BOTH the tag 'sports' and 'outdoors' but not articles with only one of these tags.
I tried this:
...
2
votes
1answer
852 views
DataMapper has n through Resource DELETE (Remove from association) not working
I'm have this two classes
class User
include DataMapper::Resource
property :id, Serial
property :name, String
has n :posts, :through => Resource
end
class Post
include ...
2
votes
1answer
738 views
How can I load HABTM-with-foreign-key relationships in my fixtures?
I have the following two models: School and User, and a HABTM relationship between them, with a join table.
In this join table, the foreign key refering to the User table is not called user_id but ...
2
votes
2answers
3k views
CakePHP form helper - HABTM multiple checkbox styling
I have two tables: "restaurants" and "cuisines" which are related to each other by a HABTM table
The table cuisines has certain fixed entries - 54 number
A restaurant can have any number of ...
2
votes
1answer
758 views
UpdateAll and HABTM in CakePHP
I have two models and a join table, User, Post and posts_users.
The posts_users table contains a few extra fields, one of which is is_active. I want to set all of a users posts to active providing ...
2
votes
1answer
2k views
(Rails, Associations) How do I remove a single HABTM associated item?
Ok, stupid question. How do you remove a HABTM associated item without deleting the item itself? For instance, say I have 3 STUDENTS that are in SCIENCE class together. How do I remove the SCIENCE ...
2
votes
3answers
737 views
HABTM 2 tables 2 different relationships
I have a Service Types table containing id and name of a couple of dozen services.
I have a Projects table that has to have a list of Proposed Services, and a list of Accepted Services.
I know that ...
1
vote
0answers
18 views
Im getting this error in my rails app: undefined method `course_users_path' for #<#<Class:0x10fd9be48>:0x10fd93d60>
I have a rails app with a has_and_belongs to many association, I keep getting this error whenever I goto the URL for this controller:
Showing /Users/Sam/makrrEdu/app/views/enroll/_form.html.erb where ...
1
vote
2answers
27 views
CakePHP HABTM - I don't understand it
Asked before but still in the dark.
cakePHP HABTM, am i getting it all wrong?
Will try again:
I have two tables: stores and managers
I want to create a new table, managers_stores and use it to keep ...
1
vote
1answer
128 views
HABTM mongoid following/follower
Mongoid ships with .push on a habtm, which sets a habtm relationship in both directions. Although delete will #delete an associated record, there's no documented way to delete only a relationship ...
1
vote
2answers
44 views
Rails: Database design for a unique set of items with variable length
I have a table of Items. There will likely be around 5 items in this table and I don't expect it to grow much beyond that. I have another table called Orders with hundreds of thousands of rows. Each ...
1
vote
1answer
49 views
How do I create a has_and_belongs_to_many association with one main record
Let's say I have the models Developers and Projects, and developers has_and_belongs_to_many projects and projects has_and_belongs_to_many developers. What is the best way to set up the associations ...
1
vote
1answer
87 views
Cakephp HABTM not saving
For some reason i am unable to save HABTM relationships, I have checked the data structure generated by the form and passed to the controller and also check the data structure in the model, and all ...