The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
2answers
50 views

Has_one association confusion, I want it reversed

I'm pretty new to rails and lately I found that I understood activerecords has_one association contrary to how it actually works. Refering to the example from rubyonrails guide I imagined that it is ...
0
votes
1answer
37 views

Active Record can't create child , child is always nil

I have a model in rails called campaign, and another one called export class Campaign < ActiveRecord::Base has_one :export end class Export < ActiveRecord::Base belongs_to :campaign end ...
0
votes
1answer
20 views

Rails has_one with join table

In my app there are Athletes... athletes can have many sports. Athlete: has_many :sports, :through => :user_sports has_one :primary_sport, conditions: ["user_sports.primary = ?", true], ...
0
votes
1answer
17 views

Rails 3 has_one with join table

I have the following: has_many :sports, :through => :user_sports has_one :primary_sport, class_name: "UserSport", conditions: ["user_sports.primary = ?", true] has_many :user_sports When I run ...
0
votes
0answers
20 views

Rails: has_one association nullifying a has_many association on change

I'm new to Rails and I'm sure I may be doing something wrong conceptually, but I'm still struggling to find the root cause (and the solution). I have a GamePlayer model class GamePlayer < ...
0
votes
1answer
49 views

Rails mongoid has_one queries

In User model there is has_one relation to Professional. In the professional model I have one Array field named industries. I need to take all values where professional industries in "IT" I tried ...
0
votes
0answers
18 views

How can I use collection select with has_one association

I have 2 models: class Brigade < ActiveRecord::Base attr_accessible :title has_one :country end class Country < ActiveRecord::Base attr_accessible :title end In my _form.html.erb I ...
0
votes
0answers
35 views

Ruby: systematic save errors in Multiple Table Inheritance context

I'm working on Ruby technology since a few weeks so i'm still a newbie. I'm facing a critical issue which is boring me since a few days :( To summerize, i've tried a multiple table inheritance ...
1
vote
1answer
55 views

Rails has_one association setup

Hi I'm new to rails and have been going in circles with this has_one association for hours. I have Products and Skins and when I create a new product via the form I'd like to use a select box to ...
0
votes
2answers
76 views

Kohana 3.3 $_has_many error

I'm trying to setup a one-to-many relationship between a User and his Clients. I can access a single client when I set my model like this: class Model_User extends Model_Auth_User { protected ...
0
votes
2answers
49 views

has_one: through: does not add constructors

I'm fairly new to rails and ActiveRecord and I can't figure out why rails doesn't generate a User.build_company method for the following model setup: class User < ActiveRecord::Base has_one ...
0
votes
1answer
55 views

Mongoid multiple has_one relations

I struggling to get these relationships to work. I have the following class FlowContainer class FlowContainer include Mongoid::Document has_one :production_flow, class_name: Flow has_one ...
0
votes
2answers
29 views

Finding a model instance with no relation in Rails

class User has_one :settings class Settings belongs_to :user I want to do something like @user_with_no_settings = User.where(:settings => nil) But this returns an empty relation. How do I ...
2
votes
2answers
58 views

How to make a has_one associated model show up in class attributes() result?

Where Person has_one Brain, should I expect brain to show up in the hash returned by attributes() for Person? If so, how to make that happen? Rails Console output: 1.9.3p327 :003 > ...
0
votes
2answers
36 views

Correct way to display associated records in each loop?

I have two classes, orders and beverages - orders has_one beverage and beverage has_many orders. The Orders table has a beverage_id field which populates correctly when I create. However, I'm really ...
0
votes
0answers
48 views

Setting a has_one relation in rails

I can't figure out why this doesn't work: home_team = Team.find_by_name! home_team["name"] away_team = Team.find_by_name! away_team["name"] fixture.home_team = home_team fixture.away_team = ...
0
votes
1answer
54 views

has_one relation depending on user type

I'm trying to create different profile types for my users. I have a Users model. User type has a Profile related, so it has_one :profile but, Page type has a Page related, so it has_one :page But, ...
0
votes
2answers
39 views

Polymorphic association fails

In my rails 3.2 application I have a User model and a Physician model with the following polymorphic associations: User class User < ActiveRecord::Base attr_accessible :authenticatable_id, ...
0
votes
0answers
150 views

Rails has_one polymorphic association eager loading picks wrong object_type

I have a model called SocialComment which is polymorphic and accepts users and admins as sociable. Each user has one user_asset as their avatar which again is connected through a polymorphic ...
0
votes
1answer
150 views

Rails multiple Has_one relationship to same model

I am working on a Rails application and currently I have 2 models - Subjects and Lessons. A Subject has 3 different types of lessons - Lecture, Tutorial and Laboratory. I modelled such that there are ...
1
vote
1answer
165 views

Rails nested has_one: cannot delete existing record

I'm trying to update nested question_output attributes in a 'question' model. A question has_one question_output. If there are no existing question_outputs in the database, everything works fine. But ...
1
vote
1answer
235 views

Extjs hasOne association local mode

I try to implement hasOne association in ExtJs 4. I use associationKey to load related model. For example I have Person model. Some people may have spouse, so server side response with nested data ...
1
vote
2answers
85 views

has_one relation controller update rails 3

I have 2 models. Task and Location Each task has_one location task.rb has_one :location I am trying to create my controller for the Location model. This is the new form <%= ...
0
votes
1answer
74 views

rails 3 has_one radio button

Having problems creating radio buttons in a form using has_one Model Class User has_one :role accepts_nested_attributes_for :role Class Role attr_accessible :name belongs_to :user Controller ...
0
votes
2answers
134 views

rails has one association problems

I have models Productor, Company and User I want that a productor AND a company have both an user. An user that belongs to a Company belongs only to this company. An user that belongs to a Productor ...
0
votes
0answers
125 views

rails one to one association

I have 2 tables with a one:one association vehicles and vehicle_spares. The spares table contains 20 spare(optional) fields for a vehicle. I am getting the following error when creating a new record ...
1
vote
0answers
28 views

Auxiliar methods for rails with Devise

I'm working with Devise and I have three models: class User < ActiveRecord::Base ... has_many :friendships has_many :friends, :through => :friendships has_one :address end class ...
1
vote
1answer
51 views

Instantiating an associated model input is available to populate the model attributes (has_one)

What is the right way to create a data model object so that I can create a form. When I first create the object it doesn't have params data with the valid attribute data so the build_ returns an ...
0
votes
0answers
177 views

Zero or one association in ActiveRecord

I am writing a Ruby on Rails application that has two models - User and Farm. A User is considered a farmer if their farmer field is set to true. However, there is no seperate class for farmers. A ...
0
votes
0answers
150 views

Rails & Mongoid: One model referencing another model for three different fields

I've got the following models in Rails ( lots of other stuff removed for readability ): class Item include Mongoid::Document embeds_many :item_attributes end class ItemAttribute include ...
0
votes
1answer
67 views

Rails: unidirectional association

Here is a scenario: I have an IssueType model and an IssueTypeColour model. An IssueType has_one IssueTypeColour, but an IssueTypeColour doesn't necessarily belongs_to a particular IssueType; it can ...
3
votes
3answers
269 views

Accessing a has_one associations' attributes

I'm still quite new to Rails so hopefully this isn't a silly question. I have two models: User and Chore. User has_one chore, and Chore belongs to User class User < ActiveRecord::Base ...
1
vote
4answers
777 views

Rails: has_one and belongs_to with presence validation on both foreign keys

I have an application with a users table and a user_profiles table. A user has_one user profile and a user profile belongs_to a user. I want to make sure that the association scenario is always true, ...
0
votes
2answers
53 views

Rails: How can this be done with a has_one association?

My model has two columns, one named foo_id and the other bar_id. I'm wondering if it's possible to turn these two simple methods into has_one associations: class SomeModel < ActiveRecord::Base ...
1
vote
1answer
187 views

How do you override the getter method for a Rails has_one association?

I want to override/extend a Rails has_one association method so that it always returns an instance of the associated class. (If none already exists in the database, I want to create a new one and ...
0
votes
1answer
116 views

Polymorphic has_one association and multiple inheritance with Rails 3

I've seen some posts dealing with this, and am trying to determine the best solution. Semantically, I want a Client model with a one-to-one relationship with a Survey. There are different kinds of ...
0
votes
1answer
69 views

has_one association and nested form

I have a model Post: class Post < ActiveRecord::Base has_one :draft, class_name: Post, foreign_key: draft_id end In routes.rb I have the following: namespace :admin do resources :posts do ...
0
votes
1answer
44 views

How do I modify my form partial to handle a has_one association?

This is the relevant part of my _form.html.erb <%= form_for(@score) do |f| %> <% if @score.errors.any? %> <div id="error_explanation"> <h2><%= ...
1
vote
2answers
209 views

Trouble with has_one Association in Rails

I've been stumped by this problem for several hours now and I'm hoping someone can help me figure out why this code isn't working. What I'm trying to do is create an account associated with a ...
0
votes
2answers
110 views

has_one, belongs_to What am I doing wrong?

I have Users and each user sets a Goal. So a goal belongs_to a user and a user has_one: goal. I am trying to use form_for in the view to allow the user to set their goal up. I figured it would be ...
0
votes
1answer
177 views

Rails has_one relationship safe resource.build_resource in controller

I have a page that takes a user through a short sign up tutorial when they create their account in order to create their first resource. In my app, :hotel belongs to :user, and :user has_one hotel. ...
0
votes
1answer
194 views

Rails3 FactoryGirl has_one unknown attribute error

I have the following setup: Models: class Product < ActiveRecord::Base has_one :product_category attr_accessible :name, :product_category, :product_category_id end class ProductCategory ...
0
votes
1answer
85 views

Rails : Set form inputs with a has_one relation

In my rails app, I have a relation between User table (which is dedicated to authentication purpose) and Store table (which contains store information, like the name, description,...). I mapped the ...
0
votes
2answers
242 views

Rais 3 has_one / belongs_to relationship with model in subdirectory

I'm trying to create a simple relationship but with a model in a subdirectory under Rails 3.2 I have a User class and each user has an email subscription.. Because There will be other types of ...
0
votes
1answer
109 views

Rails Saving Models in Wrong Order

i've been searching around for some time now and can't seem to figure out what is causing this, I had a model working saving a volunteer and his home and work addresses. I changed something (cant seem ...
0
votes
1answer
52 views

linking to table and returning value

i am trying to query a table and return a value if the conditions are met. schedule model class Schedule < ActiveRecord::Base belongs_to :result attr_accessible :result_id end results model ...
0
votes
1answer
58 views

Saving result of has_one association to avoid fetching DB in Rails?

I have a has_one association between User model and Player model. I see myself doing current_user.player so many times in controllers and views, and I feel like I am hitting the DB way too much every ...
1
vote
0answers
202 views

ActiveRecord is not updating ID for polymorphic association accessed by :through after saving object

I'm trying to create a set of models in which user's profile has one address assigned but user can have many addresses in his virtual "address book". The user should be able to pick up the default ...
0
votes
4answers
172 views

Rails Active Record Associations

I've been reading and re-reading the Rails associations guide: http://guides.rubyonrails.org/association_basics.html This were close but not quite the same: Ruby on rails active record associations ...
0
votes
1answer
96 views

Activerecord relation creation via has_one

I Rails if you have a model Walrus that has_many :bubbles (and Bubble belongs_to :walrus, you can create a new Bubble that is associated with the Walrus like so: chuckles = Walrus.create ...

1 2 3