0
votes
0answers
15 views

How to model an owner and members with a has_many :through association?

In my rails application I have Event and User models. The business rules dictate that an Event has one owner and many members, and the owner must be a member. The inverse would be User having many ...
2
votes
2answers
69 views

Rails validation for has_one relation

I have two model like: class Employee field :name field :login, type: Boolean has_one :user end class User field :username field :email belongs_to :employee validates_presence_of ...
0
votes
1answer
37 views

Using checkboxes in a belongs to and has one relationship

On the "show" page of my "Account" model I a have a "Checklist" model. I want to be able to check on/off the each of the boolean values on the checklist within the account's show page. I'm getting the ...
0
votes
0answers
20 views

Courses relationship

I am having trouble choosing the proper association between by classes. I am trying to implement the relationship of college majors and minors in respect to different courses. A major will have many ...
1
vote
1answer
23 views

Ruby on Rails: getting associated values to display

I'm trying to create some kind of activity feed, and I'm having trouble getting the values I need to. I have a controller with this action def show @user = User.find(params[:id]) @ideas = ...
0
votes
1answer
16 views

Rails Device and has_many association with promotions privilege

I have two models User and Promotion, an user can create has_many promotion and an promotion belong to user, for the users i used devise so: when I delete a promotion, I would like that the users ...
0
votes
1answer
40 views

polymorphic association with separate forms

I have one model, User, and then 2 other models: Editor and Administrator associated with the user model via a polymorphic association, so I want to have 2 type of users, and they will have different ...
0
votes
1answer
20 views

Where is the model association made?

Here is my data structure: class Report < ActiveRecord::Base has_many :keywords end class Keyword < ActiveRecord::Base belongs_to :report end When a Report is created, Keyword data is ...
1
vote
1answer
45 views

Several associations as one

How can I get the same result, but like posts method is a simple association? I want to do this: "user.posts.active". Is the best solution to define :finder_sql ? class User < ActiveRecord::Base ...
0
votes
1answer
19 views

Ruby on rails : associations with multiple columns on non id key

I try to implement a simple app where I have users and I get the users friendships from a social network. I have two models with the following columns: User : id (the default id) sn_id (the id from ...
0
votes
1answer
35 views

has_many association between models

I have a rake task that allocates a score when comparing a prediction and result, at the moment the relationship is a has_one, as in a prediction has_one :result.. I want to change this to a ...
0
votes
1answer
21 views

Rails has_one per scope

I have three models as follows: class User < ActiveRecord::Base ... has_many :feeds ... end class Project < ActiceRecord::Base ... has_many :feeds ...
0
votes
1answer
15 views

Rails Form Association Automatically New

I have a rails form for movies. In this form is Title and Trailer_id (which has the youtube url) Trailer_id is an association with the trailers scaffold. So when I go to /trailers/new and add a new ...
0
votes
1answer
16 views

Link in Nested Forms returning Invalid Association

I'm using Nested Forms to create a complex list of forms for a group of models associated with it. However, when I add the link_to_add link in my form it returns an error message, Invalid ...
0
votes
1answer
44 views

Ruby on rails NoMethodError in controller after create an association

I have two models User and Promotion, an user can create has_many promotion and an promotion belong to user so : promotion.rb class Promotion < ActiveRecord::Base belongs_to :user belongs_to ...
0
votes
1answer
39 views

Rails: Get all associated models from has-many association

I need to get all associated models from the other associated model, on which I want to run query first. For example, I got Post model and Tag model. I need to get all Posts, which associated with ...
0
votes
3answers
57 views

Grab id from another model and then save it into a new model

Really trying to get my head around the following situation. I am grabbing football results via a screen scrape and saving them to a model (result), ok so far.... I have some associations setup ...
0
votes
2answers
23 views

Ruby on Rails w/ Devise - AssociationTypeMismatch User expected

I'm new to RoR and I'm struggle with the creation of an Authorization instance which belongs to a User. It works fine when the user doesn't exist, create the user and it's first authorization. But I ...
0
votes
1answer
23 views

Source of the New and Create Methods in Rails ActiveRecord while using Associations

I was wondering what the source (i.e., defining class or module) of the New and Create methods is while using associations in Rails. For example, the Associations section of the Rails guides ...
0
votes
1answer
29 views

Create an object with several associations

If I have a user and article model with an association has_many :articles and belongs_to :user, I would write user.articles.new to create a new article object with the correct user_id . So my question ...
0
votes
0answers
23 views

Rails Join table not populated after form submit

I am trying to set up a join table for categories/video-posts called categorizations. It all seems fine however, when the create video_form is submitted, the join table is not populated. So firstly is ...
1
vote
1answer
24 views

Rails - Eager Load Association on an Association

Is it possible to eager load an association on an association? For example, let's say I have an Academy class, and an academy has many students. Each student belongs_to student_level class Academy ...
0
votes
0answers
27 views

Rails associations: hash of ids within one column needed?

I have a User model and a Company model, and I want each user to have a variable number of companies (that they have worked at), that can be pulled by e.g. current_user.companies. The list of ...
0
votes
4answers
22 views

Do I need to create an assocation table for a :has_many :through association?

I'm trying to use a :has_many :through type association, but I'm getting the following error: ActiveRecord::StatementInvalid: SQLite3::SQLException: no such column: work_units.developer_id: Many ...
1
vote
1answer
27 views

Foreign Keys pointing to same Model

I have an User model class User < ActiveRecord::Base attr_accessible :email, :name has_many :client_workouts end And a ClientWorkout model class ClientWorkout < ActiveRecord::Base ...
1
vote
2answers
56 views

User/Address association in Rails

I'm working on my first Rails project and I'm trying create a proper User/Address (or rather User/Location) association. I thought my problem was common and that others had done what I'm trying ...
0
votes
1answer
20 views

Is it possible to extend the ActiveRecord association definition later?

I have a Quiz, which has many Questions. I want to be able to change the order of those questions inside a quiz. But I don't want to use gems such as acts_as_list, because then I would have to store ...
1
vote
2answers
30 views

Ruby on rails: Trouble creating an object with multiple associations

I am having a problem with creating an object with an association. I have a Message model that belongs_to a job, and a user or runner. Inside my jobs/index.html I want to show a list of jobs with ...
-1
votes
1answer
31 views

Rails association for post and location - has_many and belongs_to

I am creating a Post model which has one Location. A Location can be in many Posts. For this relationship, I created the field location_id in Post. I was wondering to do the following belongs_to and ...
0
votes
1answer
32 views

Fields_for with nested attribute, has_many through association

I have 3 models - standards, layers, and layers_assocs. Standards has many layers through layer_assocs and the rest is trivial. The layers_assocs table stores the standards_id, layer_id and a visible ...
0
votes
1answer
32 views

rails find similar products other customers ordered

I have a simple app where users can view products and preorder them so they have one in stock when they get released. A Product has many preorders, and many users through preorders. A User has many ...
0
votes
2answers
32 views

Create association in Rails

I've got model Project and model User. I've got belongs_and_has_many in these. But now I need to tell Rails: this specific user belongs to this specific project. How can I do it in Project controller, ...
0
votes
1answer
28 views

Ruby on Rails: User model association applications and migrations

I'm still fairly new to Ruby on Rails and I'm working with associations, such as if a table has_many :facts, or belongs_to :list, do we deal with users as well? for Users model: has_many :lists ...
-1
votes
1answer
31 views

NoMethodError in Characters#new

I am new to Rails.I am creating a Rails project in which Product and Character are the models.I have the following Questions. Q1. I had given the association between the two models as class Product ...
0
votes
1answer
21 views

Access parent attribute in independent nested model view

I have nested resources resources :invoices do resources :payments end The invoices model is as follows: class Invoice < ActiveRecord::Base belongs_to :customer, :inverse_of => ...
0
votes
1answer
17 views

How can you override the activerecord has_many assoication build method?

I would like to override the build method of a has_many assoication. class OtherThings < ActiveRecord::Base belongs_to :my_model end class MyModel < ActiveRecord::Base has_many ...
0
votes
1answer
33 views

First_or_create with update on match?

I really like the first_or_create method: # Find the first user named Scarlett or create a new one with a particular last name. User.where(:first_name => 'Scarlett').first_or_create(:last_name ...
0
votes
1answer
27 views

Creating a :has_many, :through association in reverse

class Profile < ActiveRecord::Base has_many :friends, :through => :profile_friends, :source => :profile, :class_name => 'Profile' end I want to be able to get a Profile's friends ...
1
vote
3answers
41 views

Ruby on rails: Creating a model entry with a belongs_to association

I am trying to add a new entry in my database for a model that has a belongs_to relationship. I have 2 models, Jobs and Clients. It was easy enough to find tutorial on how to set up the association ...
1
vote
1answer
42 views

Rails Associations + Inheritance

I'm having trouble deciding how to model the following with rails associations. The UML would look something like below: ---------------- | CRITERIA | ---------------- | |* ...
0
votes
1answer
48 views

rails order by association through another association?

As a simple example, let's say a bookstore has books which have one author. The books has many sales through orders. Authors can have many books. I am looking for a way to list the authors ordered by ...
0
votes
1answer
18 views

Routing Error Nested Resources

I'm build forum rails app, I have problem with nested resources. here's controller/school/forums_controller.rb def index @forums = Forum.all end def show @forum = ...
0
votes
2answers
32 views

has_many through with condition not working

I have a model Grade and a model User. Between grades and user is a many-to-many association through collaborations. in user.rb has_many :grades, through: :collaborations, source: :user works, ...
0
votes
1answer
34 views

has_many :through with a foreign key?

I've read multiple questions about this, but have yet to find an answer that works for my situation. I have 3 models: Apps, AppsGenres and Genres Here are the pertinent fields from each of those: ...
0
votes
2answers
22 views

polymorphic and one-to-many association

I have a Collaboration model with a polymorphic association with a Grade | School, and a one-to-many association with a User belongs_to :owner, polymorphic: true belongs_to :user, foreign_key: ...
0
votes
0answers
8 views

Scoping association in RailsAdmin

I'm trying to scope an association so that users can't see reminders that were already sent when editing a relationship. I do howerver, want them to be able to see them in the 'show' view, just not in ...
0
votes
2answers
55 views

Get id form another table, rails

I have a table test having fields 'user_id' and 'post_id'. user_id I fetch by current_user.id and post_id from the post table. For this I do: In test controller:- def create @user = current_user ...
0
votes
2answers
23 views

Rails/Arel User.where(:id => <Some Other Table>.user_id)

Hey I'm just getting back into rails and I've forgotten a lot of the stuff needed to work with some associations. The Problem: I have two tables, Customer with fiels id and user_id and User with ...
0
votes
1answer
33 views

Rails ActiveRecord - Updating polymorphic id

I have an app where I have three models. I have leads and customers which are very similar (but different enough that they warranted their own models). Then I have a polymorphic model called ...
0
votes
1answer
55 views

Rails associations: How do I limit/scope a has_many :through with multiple self-referencing conditions?

What's the best way to do this? I'm trying something like this, but it feels... wrong. (NOTE: It's all about the :conditions in the has_many association...) class Submission < ActiveRecord::Base ...

1 2 3 4 5 31