Tagged Questions
The belongs-to 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 ...
6
votes
1answer
985 views
Need some help for understanding search algorithms (A*, IDA*, DFS, BFS, IDDFS, etc. )
I have some troubles understanding some of the algorithms for searching, used in AI (artificial intelligence).
What is the exact difference between A* and IDA* (Iterative Deeping A Star)? Is just ...
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
3answers
968 views
Rails 3 - Nested resources and polymorphic paths: OK to two levels, but break at three
I'm trying to do a simple family reunion site with: "posts", "families", "kids", and "pictures". Ideally I'd like the routes/relationships to be structured this way:
resources :posts do
...
4
votes
1answer
309 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.
...
3
votes
1answer
691 views
Nested form in active_admin with select or create option
We are using active_admin for our administration backend.
We have a model "App" that :belongs_to model "Publisher":
class App < ActiveRecord::Base
belongs_to :publisher
end
class Publisher ...
3
votes
2answers
78 views
RoR 3 - Finding a list of parents from group of children
I have two models with a typical relationship:
menu_options model:
class MenuOption < ActiveRecord::Base
belongs_to :category
end
categories model:
class Category < ActiveRecord::Base
...
3
votes
2answers
710 views
Rails belongs_to many models
I did find some questions on SO about Rails associations that are somewhat like my question, but for the life of me I can't seem to understand how to use belongs_to multiple models.
Here's the table ...
3
votes
1answer
144 views
In Rails, what is the difference using “has_many with belongs_to” vs “has_many with has_one”?
For example, in
class Student < ActiveRecord::Base
has_many :awards
end
class Awards < ActiveRecord::Base
belongs_to :student
end
the above should be the correct usage, but what if we ...
3
votes
3answers
433 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
367 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 ...
2
votes
2answers
83 views
Optional or Conditional model associations in Rails
I have a user model.
Users can have 1 of 3 roles: role1, role2, role3. This is represented by a 'role' column in the user model.
Each role has a unique profile. role1_profile, role2_profile, ...
2
votes
0answers
125 views
Does accepts_nested_attributes_for work with belongs_to?
I have been getting all kinds of conflicting information regarding this basic question, and the answer is pretty crucial to my current problems. So, very simply, in Rails 3, is it allowed or not ...
2
votes
2answers
104 views
Rails 3 - How do you create a new record from link_to
I'm trying to create a 'tag' functionality which allows a user to "tag" items in which they are interested. Here is my model
class tag
belongs_to :user
belongs_to :item
end
The corresponding ...
2
votes
0answers
72 views
passing object for polymorphic lookup parameter in Rails find/where
Let's say I have:
class Comment < ActiveRecord::Base
belongs_to :commentable, :polymorphic => true
end
class Article < ActiveRecord::Base
has_many :comments, :as => :commentable
...
2
votes
4answers
215 views
Commenting system for RoR Blogging Platform
I'm trying to design a comment system for my RoR blogging site, and I am having some conceptual problems with the architecture. As far as models are concerned, I have Blogposts, Users, and Comments.
...
2
votes
1answer
60 views
Returning source objects in self-referencing has_many, :through
Here's my User model:
class User < ActiveRecord::Base
has_many :friends, :class_name => 'Friendship', :dependent => :destroy
end
Here's my Friendship model:
class Friendship < ...
2
votes
2answers
199 views
rails has_one remove link
Is the only way to destroy an association of a has_one and belongs_to by setting the FK to nil on the belongs_to object?
2
votes
2answers
107 views
What is the correct way to create an object which has both belongs_to and validates_presence_of validations?
I would like to create an object which both validates the presence of a parent object AND validates the validity of the parent object. However I would like to create it independently of the parent ...
2
votes
1answer
356 views
Does Grails cascade deletes when not using domain.delete()?
From the Grails site: http://www.grails.org/doc/1.0.x/guide/5.%20Object%20Relational%20Mapping%20(GORM).html
class Airport {
String name
static hasMany = [flights:Flight]
}
class Flight {
String ...
2
votes
1answer
1k views
belongs_to with a custom class_name not producing proper foreign key in Rails 3
I am updating an application to Rails 3 and I am having trouble creating a custom foreign key. I have something like this:
class Product < ActiveRecord::Base
belongs_to :owner, :class_name ...
2
votes
1answer
1k views
Using accepts_nested_attributes_for with a belongs_to association, and using find_or_create_by_attr behaviour
I am building a Rails application which allows a user to create an object that refers to multiple other models, creating them if they do not exist, and just associating to ones that already exist:
# ...
2
votes
1answer
489 views
Optional belongsTo relationship in cakephp
I have a simple Category model in my CakePHP application. I want to add sub-categories, and do this by simply adding a parent_id column.
The parent_id is a belongsTo relationship, that references ...
1
vote
3answers
35 views
Nested attributes for belongs_to relationship
I have this Pin Model:
class Pin < ActiveRecord::Base
belongs_to :user
belongs_to :image
accepts_nested_attributes_for :image
attr_accessible :image_attributes
end
I have this Image ...
1
vote
2answers
88 views
Rails 3.2 Create Parent Model from Child View
I'm having a difficult time understanding how to do this. I have two models, a project, and a course.
#project.rb
belongs_to :course
attr_accessible :course_id, :course
accepts_nested_attributes_for ...
1
vote
3answers
30 views
belongs_to a set of classes
I have a situation that I am struggling with conceptually. I have a class Media, which represents (unsurprisingly) a peice of media. Now, there are many several different classes that own Media - ...
1
vote
1answer
55 views
CakePHP hasOne/belongsTo model relationship
I have a few models I'm trying to relate.
One model is Item, one is Slide, and another is Asset.
Items have multiple slides beneath them. Assets are basically files that have been uploaded (images, ...
1
vote
1answer
26 views
Represent multiple Null/Generic objects in an ActiveRecord association?
I have a Casefile model that belongs_to a Doctor. In additional to all the "real" doctors, there are several generic Doctors: "self-treated", "not specified", and "removed" (it used to have a real ...
1
vote
0answers
160 views
activescaffold belongs_to relationship giving routing error
I am using the following:
Rails 3.0.3
Vhochstein's Fork for Activescaffold
rake 0.9.0
ruby 1.9.2
I have a model called component which has a belongs_to relationship with category. This was modelled ...
1
vote
1answer
147 views
validating existence/presence of models depending on each other
I've two models in the following way:
class ArticleSection < ActiveRecord::Base
has_many :article_section_works
end
class ArticleSectionWork < ActiveRecord::Base
belongs_to ...
1
vote
1answer
340 views
Undefined Method 'Match' when using a :belongs_to association
I have a :belongs_to association defined on model Brand as follows:
belongs_to :loyalty_coupon, :class_name => Coupon, :foreign_key => :loyalty_coupon_id
(There is also a :has_many ...
1
vote
1answer
42 views
Setting model association in Rails - saving 'from grandchild side'
I'm a Ruby newbie so please forgive if some of these is complete ignorance. I want to set following associations:
Transcription belongs to Composition
Composition has many transcriptions, belongs to ...
1
vote
0answers
113 views
Weird behavior of Active Record (belongs_to)
I resolve this by adding goto_create_object.reload before iterator.
Here is the log:
seems to use index and first get the different output. by the way, the field io_namespace is defined as:
...
1
vote
1answer
342 views
Rails belongs_to does not set foreign key id with custom class name
I have my models setup like so:
class User < ActiveRecord::Base
has_many :posts, :foreign_key => 'author_id'
end
class Post < ActiveRecord::Base
belongs_to :author, :class_name => ...
1
vote
2answers
148 views
CakePHP on adding a belongsTo table not found?
I have a CakePHP model which looks like this (and works fine):
class Paper extends AppModel {
var $name = 'Paper';
var $displayField = 'id';
}
This gives no error since I have a papers ...
1
vote
1answer
104 views
What are the default values for Rails 3 for :dependent on has_many and belongs_to
In rails 3, i know that i can force deletion of dependent objects on belongs_to and has_many relations using the :dependent => :delete option. However i was wondering,
what is the default behavior ...
1
vote
1answer
56 views
multiple belongs_to for a model
I have this model "Comment" which is given by a model "User" for a given "city" and "department".
While creating the schema for table "comments", I put in columns city_id, department_id and user_id ...
1
vote
3answers
198 views
Rails: method_missing is not called on model when using associations
My current code:
class Product < ActiveRecord::Base
belongs_to :category
end
class Category < ActiveRecord::Base
def method_missing name
true
end
end
...
1
vote
1answer
468 views
Using rails3-jquery-autocomplete from a nested form
I receive this error when I type an existing topic into the topic field of my form:
Started GET "/posts/autocomplete_topic_name?term=test" for 127.0.0.1 at 2011-05-21 10:51:19 -0700
Processing by ...
1
vote
1answer
296 views
multiple belongs_to relationship to three model
The situation is this way..
class Organization < ActiveRecord::Base
has_many :role_memberships
has_many :roles
has_many :users, :through => :role_memberships, :uniq => true
end
...
1
vote
2answers
217 views
Why does rails not respect the type of a belongs_to associated object with STI, when its superclass is abstract?
I've come across this rather odd bit of behaviour in a rails application I'm working on.
I have multiple types of Post in an inheritance heirarchy, and a Post has_many FeedEntries.
class Post < ...
1
vote
2answers
362 views
Grails GORM self-referential belongsTo deletes opposite direction from expected
I have a Grails domain class that is a hierarchy of categories. Each Category has a parent category (except for the root category which is null).
class Category {
String name
static mapping ...
1
vote
1answer
291 views
Rspec - respond_to “user post” valid despite user is not valid (has_many/belongs_to association)
I don't understand something fairly basic with testing association (has_many / belongs_to ) with rspec.
Associations in models:
user has_many posts
post belongs_to user
I set a user with no ...
1
vote
1answer
109 views
belongs_to many Situation
Here is the situation:
Model : Account
has_one servicelist
Model: Servicelist ( has foreign key as 'account_id' & 'videoservice_id')
belongs_to Account
belongs_to videoservice.
...
1
vote
1answer
302 views
How do I find a child's parent through a has_one association in Rails3?
Say I have the following models:
class Parent < ActiveRecord::Base
has_one :child
end
class Child < ActiveRecord::Base
belongs_to :parent
end
I'd like to retrive the parent through the ...
1
vote
3answers
251 views
rails - How do I set the id value of new record of model in has many/belongs to relationship?
I'm trying to create a record that in in a has_many and belongs_to relationship
user hasmany posts and posts belongto user
@post = Post.new( params[:post], :user_id => current_user.id )
...
1
vote
1answer
195 views
belongs_to objects in rails
Hi I'm currently building a little forum application with rails (3). I'm fairly new in the Rails matter and I got stuck with the topics.
I have 2 models (topic & topic_reply)
topic model:
class ...
1
vote
1answer
248 views
Setting a :has_many :through association on a belongs_to association Ruby on Rails
I have three models each having the following associations
class Model1 < ActiveRecord::Base
has_many :model2s
has_many :model3s
end
class Model2 < ActiveRecord::Base
belongs_to :model1
...
1
vote
1answer
272 views
Rails belongs_to and single table inheritance not behaving
I have a Bike model and a Component model. Several models inherit from Component: Frame, Chain, Crankset etc.
When I submit my form, my params look like this:
"bike" => { "frame" => { "id" ...
1
vote
1answer
225 views
belongs_to has_one structure
I have an application which has the following characteristics
There are Clubs
Each Club has Teams
Each Team has Players
I have a users table. The user table basically contains the username and ...