0
votes
1answer
27 views

Defining Relationship ( Many to Many) for 3 Models in Rails

I have three models in Rails as : Curriculum, Grade and Topics. The relationship scenario is like : Curriculum 'C1' in grade 'G1' has_many Topics ( t1,t2,t3) Curriculum 'C2' in grade 'G2' ...
0
votes
0answers
44 views

I want to have a single object of a RoR model that has one of each attribute

I have one Plant that has just one machine of each type, say Type 1, Type 2 and Type 3. Each machine Type is a different model, this is because each one has different attributes and nothing in common. ...
0
votes
3answers
131 views

Rails ActiveRecord implementing relationship

Help me out with a db migration and model in Rails, I tried searching for self referencing and what not, but I can't make heads or tails.. I'm stuck, so to say.. Basically I want two models, User ...
4
votes
1answer
131 views

Active Record has_many generates sql with foreign key IS NULL

I don't expect a model with NULL as foreign key to belong to anything! I have the following rails app, modelling ants and ant hills (inspired by Jozef). $ rails -v Rails 3.2.8 $ rails new ant_hill $ ...
0
votes
1answer
100 views

has_many delete associations on update

I think this one is pretty simple… But i don´t get it. I have a has_many-relationship between two models (combination and canvas_price): combination.rb: class Combination < ActiveRecord::Base ...
1
vote
3answers
144 views

rails activerecord, friend relation + inverse_friend relation how to get the mutual relation? code included

Trying to find the mutual relation, In a friends relations, Already have friends and inverse_friends. But how to combine them to get the mutual friends? Cannot seem to figure it out I tried several ...
0
votes
1answer
53 views

Ruby: ActiveRecord relationship

I have some problems setting up my desired relationship in my application. Some help and hints would be appreciated! I have the following models: User (id, username) Company (id, name) Campaign ...
0
votes
2answers
154 views

Tables associations best practices in Rails?

Very new to Rails, have managed a few simple projects, but now stepping into more complex associations between tables and was hoping for some help. The scenario can best be related to a sports match. ...
1
vote
1answer
100 views

How can I specify this relation using active record?

I am verymuch confused with the through relations. Here are my tables batch (id,name) subject(id,batch_id,name) teacher(id,name) subject_teacher(subject_id,teacher_id) the relations are batch ...
2
votes
3answers
406 views

activerecord, nested categories?

If I have a nested categories, where each category might have many sub-categories, and each category belongs to one parent category, how would I write the Category model ? I thought it will be ...
0
votes
2answers
85 views

Rails counting through relationships

I'm having problems getting my brain around this. I have four models: Account has many-> List has many-> ListItem <-belongs to Category I need to get a list of the top-n Categories and the ...
0
votes
1answer
162 views

HABTM relationship with custom relationship names

I'm trying to create a HABTM relationship between to classes User and Benefit. The problem is that users and benefits have multiple relationships with each other, so I'm trying to give this ...
0
votes
1answer
230 views

Model has_many AND has_many :through in one?

I have a set of categories, belonging to a category set. These categories can themselves have a mix of categories (self-referential) and also questions. The models and their relationships are defined ...
2
votes
2answers
4k views

Rails includes nested relations

I need to query all posts from a specific user and include all comments and the user who belongs to the comment. class User < ... has_many :posts has_many :comments end class Post < ... ...
0
votes
1answer
346 views

php ADOdb Active Record relationship setting

I have 2 tables, user & country NOTE: table name is singular ADOdb_Active_Record::TableKeyBelongsTo( 'user', // child table name 'id', // child primary key 'country', // parent table ...
0
votes
1answer
70 views

Multiple Relationships to the Same Thing Rails

I'm very new to rails so please forgive my limited knowledge. If I wanted to create a web app for pilots to log flights, I might have the following models... class Flight < ActiveRecord::Base ...
5
votes
4answers
2k views

Saving join attributes through a has_many :through with :conditions

I have an Artist model that looks like this: # app/models/artist.rb class Artist < ActiveRecord::Base # Relationships has_many :releases has_many :songs, :through => :releases ...
8
votes
2answers
2k views

HABTM Polymorphic Relationship

:) I'm pretty new to Rails, and i'm trying to do a polymorphic HABTM relationship. The problem is that I have three models that I want to relate. The first one is the Event model and then are two ...
0
votes
1answer
459 views

Rails has_one, include or join

I was wondering whats the best way to set up this DB structure in Rails 3... I have a users table and a user_profiles table. The users_table contains 'name, email, pass, login_count'; the ...
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
2answers
176 views

ActiveRecord Query with many to many or other Params

I got 2 Models Projects (with a boolean column "hidden") Models the both have a many to many relationship, so i added a migration with a projects_users table and changed the models using ...
1
vote
1answer
238 views

Model relationships problem in Rails 3 when deploying to Heroku

I'm having problems with the relationships on a Rails 3 app. In the index view of one of my models I'm displaying a field from another model, and it is working perfectly locally, but when I push it to ...
0
votes
1answer
76 views

Model with extra columns based on belongs_to model

I am building a products database. Each product belongs to a category. There can only be products under sub-sub-categories. Each Product have attributes like name, ean_number, price, width, height, ...
0
votes
1answer
158 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 = ?", ...
0
votes
0answers
186 views

rails 2 - has_many through last record unable to be deleted

My relationships work fine apart from when I try and delete the last join relationship, there is no error but the record is not deleted. relationships - class Contact < ActiveRecord::Base ...
2
votes
2answers
603 views

Is there sth. like “has_one :through (from Rails)” in Yii Framework?

I had the following tables: manufacturers * id * name * description types * id * name * description * manufacturer_id cars * id * title * description * type_id Now my problem is, I want to list ...
0
votes
3answers
175 views

Identifying the relationship with multiple one-to-one relationships between two models in rails

I have the following two models: class Project < ActiveRecord::Base has_one :start_date, :class_name => 'KeyDate', :dependent => :destroy has_one :end_date, :class_name => 'KeyDate', ...
3
votes
2answers
102 views

Why/how is it possible to call class methods of a model on a collection/array returned by a relationship?

So I came across an interesting bit of code today and it caught my attention. I didn't think this was possible. The line of code was: @post.comments.approved_comments Looks alright, right? But what ...
0
votes
2answers
548 views

Active Record Query with Calculated Field

I am trying to use a query with a calculated field in a Yii Relationship definition but all I get is errors. Here is my query: $me = new CDbExpression('CONCAT_WS(\', \', last_name, first_name) AS ...
0
votes
1answer
73 views

how to add a entry to tables with relationships?

I have 2 models, Users & Accounts. They are in one-to-many relationship, i.e. each accounts have many users. Accounts company_id company_name company_website Users user_id ...
0
votes
1answer
360 views

How to add a new entry to a multiple has_many association?

I am not sure am I doing these correct. I have 3 models, Account, User, and Event. Account contains a group of Users. Each User have its own username and password for login, but they can access the ...
1
vote
1answer
136 views

Accessing two sides of a user-user relationship in rails

Basically, I have a users model in my rails app, and a fanship model, to facilitate the ability for users to become 'fans' of each other. In my user model, I have: has_many :fanships has_many ...