0
votes
1answer
51 views

has and belongs to many through

I have a complex relationship that I am having a hard time representing in the views. I need some help figuring out the best way to set up relationships and that will probably solve most of my ...
0
votes
0answers
25 views

Creating a record for a specific user with another HABTM relationship

I'm having a problem with creating a record in Rails 4. A user should have the ability to add a url and select specific categories for this url in the same form. The problem is when I attempt to add ...
0
votes
1answer
43 views

has_many through with scope condition

I am new to Rails and have a question on putting a condition on a has_many :through relationship. I want to have a :joined_groups relationship in the FacebookUser model. The joined_groups would be a ...
0
votes
1answer
67 views

How can I add seed data with correct relationships?

I'm creating forum software using Ruby on Rails. I'm stuck on adding seed data to my database with the correct database relations. A forum has many topics, and a topic belongs to a forum. That is a ...
0
votes
1answer
138 views

Rails HABTM Relation with multiple form elements

I am working on a project that has the need for a has_and_belongs_to_many relation. This involves Users having many "proposals" and a proposal belonging to many users. This is important as a user ...
0
votes
1answer
78 views

creating a migration for this relationship

I completly forgot, over night, how to create the migration for this type of relationship: I have a project table and a user table and each user has their own projects that they create how ever users ...
1
vote
1answer
35 views

RoR has_two relation: a Donation between two Users

I have a problem I find difficult to search the web for an answer... I have in my Ruby On Rails two models: User and Donation. I want that a Relation has two user: user1 gives 10$ to user2. This is ...
5
votes
3answers
148 views

Product orders between 2 users

I have three models: User, Product, Offer and a problem with the relationship between these models. Scenario: User 1 posts a product User 2 can send User 1 an offer with an price e.g $ 10 User 1 ...
0
votes
2answers
129 views

Ruby on Rails: Table relationship search

I'm still having trouble searching for technologies that are stored in a separate table, where there is a relationship between the technology table (technol) and Project table through a table called ...
1
vote
1answer
114 views

Rails Active Admin relationships issues

I've been struggling with this one for a while now I have an address that belongs to an expert here are my models: class Expert < ActiveRecord::Base has_one :address end class Address < ...
0
votes
2answers
100 views

Construct relationship in models in rails and Insert data into it

How to construct a model in rails 3 user having one profile. user having one notification user having one role such as admin etc. I want to make their relation ship. After making it. How to use ...
0
votes
1answer
87 views

How to refer to a symbols' active record relationship inside a fields_for

Inside a fields_for block how can i reference the value of a relationship field. For instance: app/models/cart.rb class Cart < ActiveRecord::Base attr_accessible :lineitems_attributes ...
0
votes
2answers
312 views

Undefined method on create with has_many and belongs_to relationship

When i try to access to a method created by the relationship has_many - belogs_to, i get an undefined method error . Here is the code (semplified) : local.rb (model) : class Local < ...
0
votes
0answers
54 views

Rails Database Relationship Subject, Topic, Video

I tried reading other similar threads from SO but to no avail. I want to create a database relationship like this: a subject has many topics, which in turn has many videos. Here is my database ...
0
votes
1answer
169 views

Unknown attribute when linking two models together

Brief overview of my app. It's quite basic in that the User first of all creates a set A client on one page and then uses another to create and assign jobs to the user. My Client model and view are ...
1
vote
1answer
329 views

DataMapper: multiple has-and-belongs-to-many relationships between the same models?

How can I set up multiple relationships of the has n, :through => Resource type between the same models with DataMapper? For instance, in a news CMS I would have something like this: class User ...
0
votes
1answer
82 views

How do you structure a ManyToMany relationship with itself?

I'm trying to model a database for my website and I'm trying to conceptualize how one would go about structuring a table that has a ManyToMany relationship with itself. I'm very new to programming and ...
0
votes
2answers
76 views

Ruby: Loop through multiple to return organized lists

I'm writing a web app that lets users browse through attractions in regions, states and countries. Currently I have the app set up in a way where attractions belong to regions, regions belong to ...
0
votes
3answers
478 views

Rails: Follow/Following Relationship Button

I have a user model that can create relationships to have followers and follow others and everything I learned from the rails tutorial worked great. One thing is that I am trying to take it to the ...
0
votes
1answer
389 views

Rails: Show Followers/Following

I am currently having problems with this section of the Rails Tutorial: Showing the Followers/Following. The problem that is identified is: Missing partial users/user with {:locale=>[:en], ...
2
votes
1answer
340 views

Rails: Having problems with follow and followed system

This is the error I get undefined method `followed_users?' for #<User:0x007fdadbf11e28> Extracted source (around line #3): 1: <% unless current_user?(@user) %> 2: <div ...
2
votes
1answer
204 views

Ruby on Rails: Better approach to delete related models

I have the following classes/relationships defined: class Component < ActiveRecord::Base has_many :component_stories,:dependent => :destroy has_many :stories, :through => ...
0
votes
1answer
26 views

Relationships between 2-3 models

I have following models: User has_many :roles, :through => :assignments Role has_many :assignments has_many :users, :through => :assignments Assignment belongs_to :user ...
0
votes
3answers
474 views

Accessing a table in Ruby on Rails via relationship

I'm trying to build an inventory system for the various servers and apps we have. I have the following tables/Models: App (Application) Server (Server) Environment (Working environment) and then I ...
3
votes
1answer
144 views

Ruby on Rails: Retrieving a friendship given two users

I have seen the railscast on self-referential relationships here: http://railscasts.com/episodes/163-self-referential-association I have built upon this in that I've included a 'status' field on ...
0
votes
1answer
61 views

Problem with date based relationship in Rails

I build a one-to-one relationship within rails with a date based condition, which means only the order of today should be returned. has_one :todays_order, :through => :patient_orders, :source ...
0
votes
1answer
161 views

Weird problem with json rendering of model of relationship in Rails 3.0.4

I've got a relationship through a one_to_many :though relationship: has_one :todays_order, :through => :patient_orders, :source => :daily_order ,:conditions => ["order_for_date = ?", ...
2
votes
1answer
457 views

Creating a scope based off of a relation

I'm using Rails 3.0.4 and Ruby 1.9.2 I'm trying to create a scope called role which takes a role string and returns all of the User records that have role as one of their roles. The problem is User ...
0
votes
2answers
213 views

Rails - Many-to-Many Relationship - Default Relationship?

I'm having an issue within rails where, I have a basic many to many relationship between two models (order and status). These models look like the following: class Order < ActiveRecord::Base ...
5
votes
1answer
369 views

Getting a list of related models in rails

Suppose I have an object Person, which has_many :foos and :bars. Given an instance, p (p = Person.new), how do I programmatically determine what relationships are available? i.e. p.some_method => ...
1
vote
1answer
308 views

Using polymorph many-to-many self referencing relation with attributes on the relation in rails

I'd like to create a self referencing relation in rails. I have a Person model, and the person should have masters and pupils with same Person object. So far I tried: class Person ...
1
vote
1answer
70 views

Issues with Relationships

You can take a look at the app I'm referring to at: http://github.com/585connor/QA So, I've built this question & answer app... kind of. I can get the answers to be listed on their respective ...
2
votes
3answers
576 views

Find by association (Datamapper)

I've got two models that look like this class Stage include DataMapper::Resource property :id, Serial belongs_to :staff end class Staff include DataMapper::Resource property :id, ...
2
votes
1answer
616 views

Problem with one-to-many relationship with Single Table Inheritance (Rails)

I have problem with STI and relationship in ActiveRecord. I think I missed something in the class methods, but I don't know for sure. Below is my models: class User < ActiveRecord::Base has_many ...
3
votes
1answer
396 views

How do I retrieve specific attributes of a relationship/collection?

Is there a good way to retrieve all of a specific attribute from a relationship/collection? For instance, I want a list of all the names of a person's cars. Obviously I can't do the following: ...