Tagged Questions
The has-many tag has no wiki summary.
17
votes
4answers
9k views
Rails: belongs_to vs has_one
A bit of a newbie question on rails associations.
I have a Bug model, and a Status model. Status is basically just a key/value pair table. Out of the choices available, I would say Bug has_one Status ...
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 < ...
11
votes
4answers
4k views
Rails Model has_many with multiple foreign_keys
Relatively new to rails and trying to model a very simple family "tree" with a single Person model that has a name, gender, father_id and mother_id (2 parents). Below is basically what I want to do, ...
8
votes
2answers
3k views
Rails has_many association count child rows
What is the "rails way" to efficiently grab all rows of a parent table along with a count of the number of children each row has?
I don't want to use counter_cache as I want to run these counts based ...
6
votes
3answers
172 views
What is the “rails way” to enforce a has_many but has-only-one-current association?
I have a simple rails app with models project and phase. A project has many phases, but only on phase can be active (i.e. "current") at a time. I still want the other phases to be accessible, but the ...
6
votes
2answers
3k views
Rails has_many with alias name
In my User model I could have:
has_many :tasks
and in my Task model:
belongs_to :user
Then, supposing the foreign key 'user_id' was stored in the tasks table, I could use:
@user.tasks
My ...
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
195 views
limit the number of objects returned in a has_many
How can I limit the number of rows returned in a has many relationship? For example:
class User < ActiveRecord::Base
has_many :photos
end
I want to be able to do:
User.includes(:photos => ...
5
votes
1answer
310 views
mongoid inheritance problem
I have a model like this
class Canvas
include Mongoid::Document
field :name
referenced_in :hero
end
class Browser < Canvas
field :version, :type => Integer
end
class Hero
include ...
5
votes
3answers
4k views
Grails dynamic scaffold with hasMany: is it a bug or am I misconfiguring?
I'm a Grails noob and running into something that seems to be a bug, but it is entirely possible I'm not configuring everything correctly.
I've got two simple Domain Classes:
class Player {
...
5
votes
2answers
1k views
Is it possible to have a compound foreign key in rails?
Suppose the following data schema:
Usage
======
client_id
resource
type
amount
Billing
======
client_id
usage_resource
usage_type
rate
In this example, suppose I have multiple resources, each of ...
4
votes
1answer
1k views
ActiveAdmin with has_many problem; undefined method 'new_record?'
I'm trying to customise a ActiveAdmin form for a Recipe model that has a has_many relationship with Step.
class Recipe < ActiveRecord::Base
has_many :steps
end
class Step < ...
4
votes
1answer
300 views
grails addTo entering duplicate data for hasMany relationship
I have a pretty simple hasMany relationship where a "product" hasMany "packages". I'm running a script to try and fill in the data, which works fine on the first run. However on the second run, it ...
4
votes
1answer
308 views
Why is my user_id nil?
def destroy
@dignity.destroy
end
Sorry, that's not code, that's just how I feel right now. I know there are a ton of beginner questions on Devise, I think I looked at almost every single one.
...
4
votes
1answer
416 views
Rails: Delete a Has-Many Relationship ONLY
I have a: has_and_belongs_to_many :friends, :join_table => "friends_peoples".
To add a friend I do: @people.followers << @friend which create the relationship and a new person profile.
Now ...
4
votes
3answers
858 views
PostgreSQL, Rails and :order => problem
I have the following line in my ActiveRecord model:
class Record < ActiveRecord::Base
has_many :users, :through => :record_users, :uniq => true, :order => "record_users.index ASC"
...
4
votes
3answers
2k views
has_many and single table inheritance
I have a has_many relationship between two entities, Feeds and Posts. I also have specific types of posts, Videos and Photos. This is structured in the database using single table inheritance.
Right ...
4
votes
4answers
2k views
How do I pass a string to a has_many :finder_sql parameter?
In my application, a user has_many tickets. Unfortunately, the tickets table does not have a user_id: it has a user_login (it is a legacy database). I am going to change that someday, but for now ...
3
votes
2answers
46 views
How to filter association_ids for an ActiveRecord model?
In a domain like this:
class User
has_many :posts
has_many :topics, :through => :posts
end
class Post
belongs_to :user
belongs_to :topic
end
class Topic
has_many :posts
end
I ...
3
votes
3answers
72 views
Ruby on Rails 3: How to access an attribute of each record in a has_many query
I wasn't sure how to phrase it in the title, but what I'm trying to do the following. I have 2 models that have the following relationships:
class Campaign < ActiveRecord::Base
has_many :points
...
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
228 views
counter_cache in single table inheritance
I am wondering if the counter_cache would work in single table inheritance.
For these models:
class User
has_many :questions
end
class Question
belongs_to :user, :counter_cache => true
end
...
3
votes
3answers
430 views
Rails: Non id foreign key lookup ActiveRecord
I want ActiveRecord to lookup by a non-id column from a table.
Hope this is clear when I give you my code sample.
class CoachClass < ActiveRecord::Base
belongs_to :coach
end
class Coach < ...
3
votes
2answers
366 views
How to create “two-side” many-to-many relationships in Rails?
Suppose we have a photography site. Any author can subscribe to receive updates from any other author. Obviously if author A is subscribed to author B that doesn't mean that B is subscribed to A. So ...
3
votes
2answers
3k views
Rails validation for a has_many association
I am having trouble with validations on a has_many relationship where the children exist, but the parent doesn't. However, when creating/saving the parent object, I want to ensure that specific ...
3
votes
3answers
573 views
ActiveRecord has_many where two columns in table A are primary keys in table B
I have a model, Couple, which has two columns, first_person_id and second_person_id and another model, Person, whose primary key is person_id and has the column name
Here's the usage I want:
...
3
votes
3answers
5k views
rails map.resources with has_many :through doesn't work?
I've got three (relevant) models, specified like this:
class User < ActiveRecord::Base
has_many :posts
has_many :comments
has_many :comments_received, :through => :posts, :source => ...
2
votes
2answers
21 views
ActiveRecord: treating has_many list as a simple array
Consider this simple :has_many relationship:
class Basket < ActiveRecord::Base
has_many :apples
...
end
class Apple < ActiveRecord::Base
belongs_to :basket
end
Now, I have a ...
2
votes
1answer
31 views
Has_many association not being seen? activerecord relation error
I'm trying to create a new picture record within my gallery. Users can create one vendor and from there can create many galleries. Each gallery can have many pictures. The problem occurs during the ...
2
votes
1answer
76 views
Rails has_many with finder_sql and name_scope in combination return nil
For example lets say you have:
class Model < AR::Base
has_many :somethings, :finder_sql => "SELECT * FROM somethings"
end
class Something < AR::Base
...
2
votes
1answer
45 views
Does inverse_of works with has_many?
When I use has_one it works perfectly, but not on the has_many. Here you can see that the object_id is different because it ran another SQL to fetch it again.
ruby-1.9.2-p290 :001 > e = ...
2
votes
1answer
135 views
Alternative method for proxy_owner in ActiveRecord
ActiveRecord proxy_owner is now deprecated and the explanation here is very vague on how to change it, so I'm not sure how to use it my case:
...
2
votes
2answers
235 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
126 views
How do I show attributes for has_many associations in Rails 3?
I have a Contact which has_many Campaigns.
And a Campaign has_many Contacts.
However, a Contact may have a start_date and a status for each Campaign.
For Example:
Contact A is active and ...
2
votes
2answers
110 views
Rails Has Many Forms
I'm having a bit of trouble getting forms for a has_many association to work for a shopping basket. The view is displaying the basket and has a table row for each item. Each row contains a text ...
2
votes
2answers
128 views
Nested Attributes not updating
With the following models:
class Location < ActiveRecord::Base
has_many :group_locations
has_many :groups, :through => :group_locations
accepts_nested_attributes_for ...
2
votes
2answers
95 views
How do I calculate the most popular combination of a order lines? (or any similar order/order lines db arrangement)
I'm using Ruby on Rails. I have a couple of models which fit the normal order/order lines arrangement, i.e.
class Order
has_many :order_lines
end
class OrderLines
belongs_to :order
belongs_to ...
2
votes
1answer
768 views
Rails has_many, build, inverse_of
I have 2 models like such:
class User < ActiveRecord::Base
has_many :user_services, :inverse_of => :user
validates_length_of :user_services, :maximum => 3
end
class UserService ...
2
votes
1answer
487 views
Validate the number of has_many items in Ruby on Rails
Users can add tags to a snippet:
class Snippet < ActiveRecord::Base
# Relationships
has_many :taggings
has_many :tags, :through => :taggings
belongs_to :closing_reason
end
I want to ...
2
votes
1answer
257 views
Bug? Ive got to mass-assign params two times to update has_many association
I've got a Register model which has_many :telephones
Register model accepts_nested_attributes_for :telephones, :reject_if number and code blank?, and has attr_accessible :telephones_attributes (and ...
2
votes
1answer
190 views
(Rails Question) Merging multiple polymorphic has_many relationships
(This is not the actual code I'm using, although this sums up the idea of what I want to do)
class Connection < ActiveRecord::Base
belongs_to :connection1, :polymorphic => true
belongs_to ...
2
votes
4answers
1k views
Rails RSpec Tests for a has_many :through Relationship
I'm new to testing and rails but i'm trying to get my TDD process down properly.
I was wondering if you use any sort of paradigm for testing has_many :through relationships? (or just has_many in ...
2
votes
2answers
343 views
Create instance of Rails model with has_many association prepopulated
This is best explained by example. The following is simple to do:
class Foo < ActiveRecord::Base
has_many :bars
end
1a>> foo = Foo.new
=> #<Foo id: nil>
2a>> foo.bars ...
2
votes
4answers
223 views
RAILS: How to get has_many associations of a model
how I can get the has_many associations of a model?
For example if I have this class:
class A < ActiveRecord::Base
has_many B
has_many C
end
I would a method like this:
A.get_has_many
...
2
votes
1answer
1k views
Error while using `find_or_create_by` on a `has_many` `through` association
I am running in to a problem while using find_or_create_by on a has_many through association.
class Permission < ActiveRecord::Base
belongs_to :user
belongs_to :role
end
class Role < ...
2
votes
2answers
2k views
Undefined method when accessing through association and uninitialized constant when trying to destroy with :dependent => :destroy
I've tried persistently googling this error, but to no avail. I currently have these models
app/models/survey.rb
class Survey < ActiveRecord::Base
belongs_to :user
has_attached_file ...
2
votes
1answer
179 views
Reversed has_many in Rails
Let's say I have models: User and Item and relation many-to-many between them. How to get Users who have exactly(no more) Items with the defined attributes i.e. Users who have Items with colors = ...
2
votes
2answers
528 views
Indexes for has_many :through
Suppose you have two models, User and City, joined by a third model CityPermission:
class CityPermission < ActiveRecord::Base
belongs_to :city
belongs_to :user
end
class City < ...
1
vote
2answers
18 views
Need data from rails join table, has_many :through
I have 3 tables- users, things, follows. Users can follow things through the follows table, associating a user_id with a things_id. This would mean:
class User
has_many :things, :through => ...
1
vote
1answer
20 views
Rails 3.1: How can I stop the view from displaying the array along with the data for 2 associated models?
This has been driving me crazy. I've done lots of google and stackoverflow searches but can't find a solution. I have 2 models: FoodMenu and Product. FoodMenu has_many :products and Product belongs_to ...