has_many indicated a master-detail relationship

learn more… | top users | synonyms

0
votes
1answer
14 views

Not sure of my user/location association with Rails 4

I created a User and a Location models (and a Product Model too, but one problem at a time), and as I was playing with the console, I was surprised by some of the results. Models Class User < ...
0
votes
1answer
28 views

Rails has_many belongs_to relationships

I've got a pretty basic problem but can't seem to get it to work right. here's the setup - class Recipe < ActiveRecord::Base has_many :recipeIngredients has_many :ingredients :through => ...
0
votes
0answers
43 views

Form with multiple models associated with another model in CakePHP

Lets say I have three models: Ant, Bear, Coon. Now Coon belongs to Ant and Bear. Bear hasMany Coons, Ant hasMany Coons. I want to submit form where I create 1 Bear, 1 Ant, and just 1 Coon which ...
0
votes
1answer
33 views

Uniqueness validation with a has_many relationship

My model structure is as follows: class Client < ActiveRecord::Base has_many :charts end class Chart < ActiveRecord::Base belongs_to :client has_many :chart_data end class ChartDatum ...
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
52 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 ...
1
vote
1answer
32 views

How to define scope to get one record of a has_many association?

class User has_many :posts do def latest(report_date) order(:report_date).where('report_date <= ?', report_date).limit(1) end end end class Post belongs_to :user ...
0
votes
0answers
24 views

FactoryGirl and validations on embeds_many in Mongoid

I have a complex model relationship hierarchy setup, Here are the relevant parts ( Channel and ChannelTagWeight model) as: class Channel include Mongoid::Document embeds_many ...
0
votes
2answers
25 views

Auto generate models on creation of other models in Ruby on Rails

I have a model called Video that has many statuses. I want to create a status of each kind and add it to @video.statuses in the def create of VideosController. In VideosController, I have: def ...
0
votes
0answers
13 views

CakePHP navigate array in view

I want to display the result of a query in my view using CakePHP 2.3 hasMany relationship I have this result array: array( (int) 0 => array( 'Article' => array( 'id' ...
1
vote
2answers
62 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 ...
1
vote
0answers
19 views

Access belongs_to on a Mongoid::Document subclass

I have a model 'Index' as: class Index include Mongoid::Document belongs_to :project end Another model PercentileRankIndex inherits Index class PercentileRankIndex < Index def ...
0
votes
0answers
3 views

Sort has_many relationship after a field that is not in the referenced collection?

I'm sorry for the cryptic name of this topic but I didn't really find a better one. I have a Person model, a Company model and an Employment model which sits between them. It's sort of a has_many ...
0
votes
0answers
69 views

Sencha Touch XML parsing of children using hasMany

I'm having trouble parsing nested XML, and I've read the documentation for hasMany: http://docs.sencha.com/touch/2.2.0/#!/api/Ext.data.association.HasMany And using the forum post here as an example ...
0
votes
0answers
22 views

Filters and sorting by has_many relationship in RailsAdmin

I would like to by able to filter or sort by data in Rails Admin by the data in a has many through relationship. Is this possible? I currently am able to add a 'checkmark' in the list view if the ...
1
vote
1answer
30 views

Rails - Show which category a tutorial belongs to in the tutorial index view

I have a tutorial model and a tutorial_category model. I have linked the two together using a has_many belongs_to relationship. In my tutorials index view, I am looping through the tutorials like so: ...
0
votes
4answers
49 views

Database Association, Can a class has_many and belong_to the same object?

So I'm trying to create a simple events web application where class User can both create class Event and participate in them. In the case class User creates a class Event, I want that event to ...
1
vote
1answer
33 views

How to define dynamic has_many relationship depending on if another model/table exists in rails 3.2.12?

There are customers and projects model in our rails app. However project model may or may not present along with the customer model. Their relationship are: class Project belongs_to :customer, ...
0
votes
2answers
69 views

Yii - Active Record Relations Has_Many Issue

Im new to Yii and am having trouble establishing AR relations. I've had with Rails Active Record but am not able to set a simple relation in Yii. The case in point is between 2 models, Business and ...
1
vote
1answer
30 views

FluentNHibernate this id not saving

I'm starting my studies now with FluentNHibernate but found great difficulty. These are my objects: public class Region { public virtual Int64 Id { get; set; } public virtual string Name { get; ...
0
votes
1answer
46 views

Submit array of values to associated table in ruby on rails

I want to put an array of values from one associated model to another. I'm making a site that registers if my students has arrived one day. So I have a "day-model" that has many "students-model". I ...
0
votes
2answers
56 views

Nhibernate Linq - fetchmany where many count == 0

I have this query: var query = session.Query<Album>() .FetchMany(x => x.Tracks) .ThenFetchMany(x => x.Indices) .Where(t => ...
0
votes
1answer
37 views

Retriving data from hasMany table relationship

I have 3 tables: Certificates, Request and Requestc Request hasMany Requestc. Requestc use the certificates_requests table and has id request_id and certificate_id coloumns. I'm trying to retrive ...
2
votes
0answers
110 views

Backbone-relational hasmany best practices

I am new to Backbone-relational, I am not sure what is the right way to use HasMany. I have a Parent model which have many children (by "many" I mean thousands of children). In order to avoid ...
0
votes
1answer
31 views

Making several tables with hasMany for a complex finding

I'm having trouble assembling the tables where I will search powers of attorney for several companies. where: Prosecutor will belong to several companies (X, Y, Z) Companies have several branches ...
0
votes
1answer
71 views

EmberJS: Unable to get the length of an hasMany array two levels down

Im trying to create a computed property to get me the sum of the length of all pages. But i cannot figure out how to access a child so i can get the childs of that child. App.Document = ...
0
votes
1answer
63 views

Rails nesting associations with first_or_create

I have a comic_books table which has many issues, each of which has an author and illustrator, currently stored as strings only. Using has_many:through for comic_books to issues works great, and now ...
1
vote
1answer
65 views

How to 'unlock' a field in a CakePHP form when it is part of a hasMany association

I have a form that represents a RewardModifier table in our database. That RewardModifier hasMany RewardOption. My form is structured like this (image): So, the RewardModifier can have many ...
-1
votes
1answer
45 views

ruby on rails - how to make relationship works in route, controller, view ? has_many, belongs_to

I am struggling to get my relationship in rails to work. I have a User,Gallery,Comment model class Gallery has_many :comments belongs_to :user end class User has_many :comments has_many ...
0
votes
1answer
41 views

HABTM or HM/HMT Self-Join in Rails

I have a Users model and want users to be able to Subscribe to another User to get notifications when they post things. This is sort of a has_many self join and a many_to_many self join. I need to ...
0
votes
1answer
32 views

foreign key not updating

I'm developing an app for college where a user can log on & upload details of a hiking trail. So far everything is working & I have also implemented a nested form for photos in each hiking ...
3
votes
1answer
70 views

adding a new has_many relationship to an existing model

I would like to add a has_many relationship to two existing tables/models in my app & I'm not too sure how to di it? When I did this before with a new model the rails generate command handled ...
0
votes
1answer
54 views

Rails: Using custom column to look up for has_many association

I have 3 models: User, List, Following I'm trying to implement a system, where A user can create many lists (list contains photos, but it's not relevant in this question) A user can follow lists ...
0
votes
1answer
39 views

Referencing calling instance variable when extending has_many

I have a model called Project that has many Proposals. The Project model has an attribute called winning_proposal_id Right now I have something like this to find the winning proposal as well as a ...
0
votes
1answer
40 views

CakePhp find doesn't fetch hasMany relationships

I've got these simple models: // ActivityLog class ActivityLog extends AppModel { public $name = 'ActivityLog'; public $useTable = "activity_logs"; public $hasMeny = ...
0
votes
0answers
78 views

Rails: delete polymorphic STI has_many through association fails

I have a model called User which has many "taxonomies" associated through a Classification model. One of these taxonomies is a model called Topic (inheriting from Taxonomy). My model User is also ...
0
votes
1answer
37 views

two belongs_to same model assign id using name

I am new to RoR and am working on creating a database. Each host has two system admin. I am trying to associate the name given while creating a host with their respective system admin. How would I go ...
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
0answers
72 views

Grails save() passes although objects in hasMany relationship has constraint errors

What is the correct way to handle domain save errors on domain classes under the hasMany relationship? It seems that calling save() on the owning side of the relation will return true even if there ...
1
vote
1answer
47 views

Ruby on Rails has_many and polymorphism

I'm new to Ruby on Rails and I'm trying to understand abstract class. Maybe I still have in mind Java structure... I followed many tutorials and there is still things I'd need to understand. Let's ...
0
votes
1answer
57 views

Nested attributes for belongs_to association rails

I have two models, Complaint and Company. Complaint belongs_to and accepts_nested_attributes for Company, and Company has_many Complaints. # Models class Complaint < ActiveRecord::Base ...
0
votes
2answers
35 views

Accessing model data with has_many relationship in Rails

I have the following models: class User < ActiveRecord::Base devise :database_authenticatable, :registerable, :recoverable, :rememberable, :trackable, :validatable attr_accessible ...
1
vote
2answers
53 views

How to count MySQL results in a has-many-through relation

There is pretty good article how to filter results in a has-many relation: How to filter SQL results in a has-many-through relation I'm just seeking a solution for COUNT result, not show them all. ...
0
votes
1answer
116 views

has_many, belongs_to issues in Rails

I am trying to create a list of directors that have many movies (each movie belongs to one director): class Director < ActiveRecord::Base attr_accessible :director has_many :movies end ...
0
votes
0answers
113 views

Rails 3 has_many :through checkboxes fails *only* when 1 box selected

I've got a has_many :through setup with multiple category checkboxes being displayed on the Project edit form. It works fine unless a single category checkbox is checked when the form is submitted, ...
0
votes
1answer
53 views

All Scores For A User

I have a table set up that has 4 columns: Name, Date, Score, Grade. Throughout the table, there are many duplicates in the name category. When I click on a name, I'd like it to show all Scores, Grades ...
1
vote
1answer
18 views

Rails - Models not connecting as I think they should be

Why am I getting this error a _form's select within Bids? => undefined method `request_for_proposal' for # <ActionView::Helpers::FormBuilder:0x002aaad671c9c8> request_for_proposal ...
0
votes
1answer
57 views

How to sum through multiple has_many associations?

I do have nested associations like this : # note : irregular inflection (proj_paquet_mesures : proj_paquets_mesures) class ProjPaquetMesures < ActiveRecord::Base ... has_many :proj_mesures end ...
0
votes
1answer
27 views

How to include an associated object in a render action

I have a story model that has many posts: story.rb: has_many :posts, :dependent => :destroy post.rb: belongs_to :story, :touch => true I use AJAX to make a get request to my ...
1
vote
1answer
47 views

accept_nested_attributes is not destroying the record

My problem is related to the accept_nested_attributes , I have a model name StudentProfile and it contain the following code: class StudentProfile < ActiveRecord::Base attr_accessible ...

1 2 3 4 5 12