Tagged Questions
The has-one tag has no wiki summary.
10
votes
3answers
5k views
Using build with a has_one association in rails
This is a really noob question but im having trouble finding the answer, is there a way in rails to have 0 or 1 association? For example, I create a user with no objects, than later on create an ...
6
votes
3answers
6k views
ruby on rails has_one question
I am trying to understand has_one relationship in ruby on rails.
let's say I have two models - Person and Cell
class Person < ActiveRecord::Base
has_one : cell
end
class Cell < ...
3
votes
1answer
252 views
Rails: Create association if none is found to avoid nil errors
I have an application where my users can have a set of preferences. Both are stored as ActiveRecord-models as follows:
class User < AR::Base
has_one :preference_set
end
class PreferenceSet ...
3
votes
1answer
143 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
2answers
109 views
In RoR, if I say that A has_one B, is it mandatory that A has one B?
I need to setup a relationship so that A has one B, but there will be some entries where A doesn't have a B. Is this possible? If not, how can this be done?
Thanks for reading.
2
votes
2answers
60 views
Has_one association should be a has “only” one association
I have a User and a Gallery model and the following associations:
gallery.rb
attr_accessible :name, :description
belongs_to :user
user.rb
has_one :gallery
A gallery is created through a form ...
2
votes
2answers
80 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
1answer
314 views
Rails has_many :through and has_one :through associations
First I'm using Rails 3.1 from the 3-1-stable branch updated an hour ago.
I'm developing an application where I have 3 essential models User, Company and Job, Here's the relevant part of the models:
...
2
votes
2answers
198 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
189 views
has_one update problem
I have two models, User and Account. Each user may have one account.
Creating an account for a user works fine. My problem is that when I try to update the account, the previous accounts user_id is ...
2
votes
1answer
637 views
If I use :class_name attribute to has_one, what do I put in the migration?
I have a model in my Rails app that uses the :class_name attribute for has_one:
class Foo < ActiveRecord:Base
has_one :main_bar, :class_name => "Bar"
# ...
end
I'm a bit unsure what to ...
2
votes
2answers
808 views
RoR: has_one “or the other”? (Or, polymorphism without the inheritance.)
Hey all, I have something of an interesting requirement for my project. I need a has_one relationship where it is either one class or the other, but without inheritance. I could get away with ...
1
vote
2answers
47 views
Rails 3, comments in a nested form, wrong routes?
I have a Posts model, which has many posts in many languages. It's a bit non-standard, but to illustrate:
class Post < ActiveRecord::Base
has_one :eng_post, :dependent => :destroy # ...
1
vote
1answer
48 views
ActiveRecord has_one and has_many relation with the same :foreign_key
I have two models, Story and Chapter. A story has_many chapters, one of those is a chapter which serves as its first chapter. I used to have a foreign key start_id in the stories table to indicate ...
1
vote
1answer
49 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
114 views
Rails 3 - has_one model, how to find records where assiciated record satisfy certain creteria
I have the model Post:
class Post < ActiveRecord::Base
has_one :location, :dependent => :destroy
belongs_to :person
belongs_to :activity
I have the model Locations:
class Location < ...
1
vote
1answer
87 views
Rails: Creating a has_one model in the view of the parent model?
I have two models, Character and Background. Character has_one Background, and Background belongs_to Character. I have a _menu partial set up to display in my Character view, to allow users to view ...
1
vote
1answer
88 views
ActiveRecord and use of has_one & has_many
Consider this simple model, where a Project has one ProjectType and, naturally many Projects can be of that type.
So a Project has_one :project_type (called type) and a ProjectType has_many ...
1
vote
2answers
49 views
ActiveRecord relations: Can A has_many Bs AND A has_one B at same time?
I have a situation that I'm not sure how to handle in Rails:
Event has_many :photos and
Photo belongs_to :event
simple enough
But, Event also needs to reference a single "key" photo.
Thought ...
1
vote
2answers
103 views
Weird relationship behavior on Rails 3 and update_attribute
I'm having a hard time trying to find out why a test is failing:
describe User, "Instance Methods" do
describe "leave_group!" do
it "should set group_id to nil" do
@user = Factory(:user)
...
1
vote
4answers
276 views
Rails: No route matches {:controller=>“settings”, :action=>“edit”}
I have a has_one association between user and setting model. I have also SettingsController with edit and update actions. On front page I have a link to edit settings:
<%= link_to ...
1
vote
1answer
87 views
Reverse has_one relationship with ActiveRecord in Rails?
I'm going to pull my hair out here.
I have the following two tables:
databases
---------
id
user_id
driver
host
port
database_name
username_encryption_id
password_encryption_id
encryptions
...
1
vote
1answer
203 views
Rails: has_one association
I have a question concerning the has_one association.
I have a user model with has_one :designpad, a designpad model with belongs_to :user and the column user_id.
Now I do this:
u = User.first
d = ...
1
vote
2answers
408 views
How to get devise to work with accepts_nested_attributes_for in a has one relationship?
I am trying to get my user form to also allow the user to fill out their company profile at the same time via form_for. For some reason it is not showing the company fields. Here is my code for the ...
1
vote
1answer
481 views
has_one to a polymorphic association
I have the following:
class Car < ActiveRecord::Base
has_one :driver
end
class Driver < ActiveRecord::Base
belongs_to :car
has_one :license, :as => :licensable
end
class License < ...
1
vote
1answer
107 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
300 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
2answers
571 views
Rails multiple has_one associations
I have multiple models with created_by and modified_by columns. This is what I have for a Deal Model.
class Deal
has_one :user , :foreign_key => 'created_by'
has_one :user , :foreign_key => ...
1
vote
1answer
224 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 ...
1
vote
2answers
1k views
Rails 3 has_one routing
I have two classes:
class User < ActiveRecord::Base
:has_one :foo
end
class Foo < ActiveRecord::Base
:belongs_to :user
end
The Foo is optional.
I created the following routing:
...
1
vote
2answers
202 views
Should I use has_one or belongs_to in ruby on rails?
I want to have a model called Status which will be relatively static after some user-defined set up (and different users may have different values on status).
The status can apply to different ...
1
vote
2answers
181 views
Rails: associate model with two of its kind
im trying to do this:
class Event < ActiveRecord::Base
belongs_to :previous_event
has_one :event, :as => :previous_event, :foreign_key => "previous_event_id"
belongs_to :next_event
...
1
vote
2answers
703 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
2answers
524 views
Managing child relationships with a nested attribute form
What I'm trying to do is the following:
At anyone time a user can have 1 active profile. This active profile must be authorized by an administrator to make sure that it is compliant with the rules ...
0
votes
1answer
17 views
How do I have multiple unique has_one associations of the same type?
I am making a ruby app that will track ping pong game stats. This is what the model for my player looks like so far
class Game < ActiveRecord::Base
#has one winner
has_one :winner,
:source => ...
0
votes
1answer
23 views
has_one relationship with Paperclip
lets say I have 2 models like News, Clients.
Using paperclip's default options, I need to create for each of them additional columns like (photo_file_name .....)
but I just want to create different ...
0
votes
2answers
22 views
Has one looking in wrong table
Im trying to set up a has one relationship in RoR. An agreement has one contact. In the agreement table there is a column called contact_id.
When i try to call an agreenment's contact like so: <%= ...
0
votes
1answer
39 views
Nested form with polymorphic association not displaying fields
I have a model with a has_one and polymorphic association like this:
class Disc < ActiveRecord::Base
has_one :item, :as => :article, :dependent => :destroy
accepts_nested_attributes_for ...
0
votes
1answer
86 views
Cannot build has_one child object from nested form_for
I have a User model, which has_one Spec. In my User model, I did specify accepts_nested_attributes_for :spec, and attr_accessible :spec_attributes.
I created a nested form for User and Spec ...
0
votes
0answers
118 views
Creating Rails Seed data with foreign keys
I'm looking to create seed data that follows the foreign key constraints indicated.
I'm getting the message "undefined method 'create' for nil:NilClass"
My Commands
rails g model user login:string ...
0
votes
1answer
46 views
Rails has_one/belongs_to conceptual debate
I am building an app where I have hierarchical modules, (bare with me with the absurd models, but the concept is the same) as in an Animal has a Tracker, and the Tracker has a Cellphone, each with its ...
0
votes
1answer
16 views
How do I force ActiveRecord to load a belongs_to-has_one relation through a JOIN instead of 2 queries?
I have the following models:
User < ActiveRecord::Base
belongs_to :person
end
Person < ActiveRecord::Base
has_one :user
end
If I wanted the User to be loaded with the Person when it is ...
0
votes
1answer
284 views
Rails 3 : Mass-assignment with ActiveAdmin and has_one
I am developing a rails application in which I have two models User and Client.
User is backed by devise and is responsible for authentication and has_one Client which holds the client details for a ...
0
votes
0answers
36 views
How do you create a form for a has_one :through relationship? Current form returns an error ActiveSupport::HashWithIndifferentAccess
Question: I want to create a form that can change the association of two entities that are in a has_one :through relationship.
Here are the entities in question and their associations:
A Task has ...
0
votes
2answers
99 views
Rails: Unable to implement has_one relationship
I am trying to create an account management system that allows an account to have one billing address. I want the account and address to have their own controller and model. An admin user would ...
0
votes
1answer
60 views
has_one :through polymorphic - is it possible?
I have models in my app:
class Comment < ActiveRecord::Base
belongs_to :commentable, :polymorphic => true
end
class Project < ActiveRecord::Base
has_many :discussions, :dependent => ...
0
votes
0answers
50 views
has_one relation with metasearch
Is it possible with the Meta_Search plugin for rails 3.0.x to find if a model with a has_one relationship has an existing child?
ParentModel
has_one :childmodel
end
ChildModel
belongs_to ...
0
votes
2answers
82 views
Rails: has_one association and mass assignment
When we have
class Article < ActiveRecord:Base
has_many :attachments
end
we have to write
attr_accessible :attachments_attributes
However in case
class Article < ActiveRecord::Base
...
0
votes
1answer
49 views
has_one :through => multiple
Both Attendment & Vouching:
belongs_to :event
belongs_to :account
Therefore: 1 to 1 relationship between attendments and vouchings.
Is there a way to do this without my thinking too much?*
# ...
0
votes
1answer
80 views
validates_uniqueness_of field scoped to a has_one relationship
I have the following models:
class Section < ActiveRecord::Base
belongs_to :course
has_one :term, :through => :course
end
class ...