This is a master-detail relationship where one item "belongs_to" another and has a foreign key to maintain the relationship.
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 => ...
1
vote
1answer
14 views
rails belongs_to foreign key is null
i have the following models
class User
has_many :projects, :through => :bids
has_many :bids, :dependent => :destroy
end
class Project
attr_accessible :name, :user_id
has_many :users, ...
0
votes
1answer
24 views
Ruby on Rails, belongs_to does not work
I have the following relationships:
class GroupsNorm < ActiveRecord::Base
attr_accessible :group_name, :file_names
has_many :platformas
end
class Platforma < ActiveRecord::Base
...
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 ...
1
vote
2answers
63 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
0answers
23 views
How can I prevent a superfluous server call for a child association already successfully embedded in parent request?
I'm using Ember-Data w/ Rails API. I'm simultaneously persisting mutually dependent parent and child models. This is triggering two server POST requests: the first contains the parent data with nested ...
0
votes
2answers
29 views
what is the proper syntax for seeding a child table?
I'm trying to seed a parent table and a child table. Seeding the parent works fine but I don't know the syntax for seeding the child. Please help.
Contact.delete_all
Customer.delete_all
...
1
vote
0answers
79 views
belongsTo relationship of two models data in extjs cannot display on grid panel
I am using extJS for frontend and yii for backend. I have two models as Abodeinstitute ,AbodeInstituteContact.
AbodeInstituteContact is a model which has 'instituteId' as a foreign key of ...
0
votes
2answers
101 views
Laravel Relationships
I've been looking over relationships in Laravel 4 in the documentation and I'm trying to work out the following.
I have a table in my database called 'events'. This table has various fields that ...
0
votes
0answers
40 views
Working with MY_Model
I'm still having an issue with relationships when working with the following model.
https://github.com/jamierumbelow/codeigniter-base-model
I'm trying to make the join so that the themes table and ...
0
votes
1answer
23 views
Belongs_to only recognized by console, not server
I've got a really weird problem with my project. I've got 2 models, the one is Link and the other Category. I've got a index view where all the links should be listed, together with the corresponding ...
1
vote
1answer
31 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
51 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 ...
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 ...
-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 ...
1
vote
1answer
26 views
RoR - Validates_existence_of with nil foreign key not working
I am using the validates_existence_of gem. It works well except when I want to allow my foreign key to be nil.
Here are my models for User and Project. A project belongs_to a user and a contributor ...
0
votes
1answer
35 views
Rails belongs_to with conditions on originating table
I have a Transaction model where from_owner is polymorphic, because the transaction could come from several other models.
class Transaction < ActiveRecord::Base
belongs_to :from_owner, ...
1
vote
1answer
82 views
Can't update user in Rails_Admin for and model with belongs_to :user
I have 2 scenarios but both resolve to the same result. Both scenarios involve trying to update records via Rails_admin with both models having a "belongs_to :user" association.
Scenario 1: I need to ...
1
vote
1answer
57 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
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 ...
1
vote
1answer
53 views
“Chained” relations (1:n:m) with Mongoid and Rails
I'm trying to achieve a really simple "multiple relationship" in Rails (3.2.12) with Mongoid (3.1.2). I got three models:
class User
include Mongoid::Document
field :name
has_many :collections
...
0
votes
2answers
49 views
Limit number of siblings in belongs_to ActiveRecord?
How would you validate the number of children that belong to a parent object?
For example, if I have a question object that accepts nested attributes for answers:
class Question < ...
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
...
1
vote
1answer
45 views
CakePHP foreignKey not being saved in belongsTo relation
I have a table profiles and a table users, and profiles has a belongsTo relationship with users. On my profiles/edit view, I have a dropdown of existing users to select from.
However, the users.id is ...
0
votes
1answer
46 views
Rails: form's f.select not returning grand-belongs_to w/ default
This part of the application has to do with the grading process for bids for a RFP.
Basically a Category (e.g.: Cost, Company Profile, --and many others)
has many TestCriteria. (e.g.: Price ...
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
1answer
16 views
How to create a Locality for a Hospital from belongs to association
Model:
Hospital
belongs_to :locality
Locality
has_many :hospitals
How to create a new Locality for a Hospital, kindly help
h = Hospital.new
l = h.locality.new
l.name = "america"
l.save
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
85 views
Rails scaffolding belongs_to - showing #<MyClass:xxxx>
Experienced Java developer, new to Rails - wondering about belongs_to relationship in scaffolding.
Saw another answer like this
dose rails scaffold command support generate belongs_to or many to ...
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 ...
0
votes
0answers
33 views
Polymorphic or not
Read updates at bottom! I think I figured it out and thought I would share just in case someone wants to know this info.
I'm setting up a website that has quite a bit going on. It is a festival site ...
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 ...
0
votes
1answer
107 views
checkbox foreign key belongs to many in Yii
I'm new to yii framework so i could use some help with something. Lets say i got a table in my database with POST, 1 of the fields is TYPE. In another table i got a lot of types like this:
Table ...
0
votes
2answers
62 views
Rails get associated models
I have a model with two associations to the same model:
class Mail < ActiveRecord::Base
belongs_to :user, :class_name => 'UserFrom', :foreign_key => 'user_from'
belongs_to :user, ...
0
votes
1answer
73 views
Cannot save associated model id in Rails
I have set up models Producer and Product. When I want to create a new product, in the form I can choose Producers from list. Here is the code:
<%= select("producer", "producer_id", ...
0
votes
2answers
55 views
Checking if pixel belongs to an image
I have written the following function that find if a pixel belongs to an image in matlab.
At the beginning, I wanted to test it as if a number in a set belongs to a vector like the following:
...
-2
votes
1answer
36 views
Traversing through pixels
Say that we have the following part of an algorithm, provided that I want to implement it in matlab:
k = 0;
while k<n
among all pixels that "belong to" a set, select that pixel
k = k+1;
How can ...
0
votes
1answer
74 views
Rails 3 has_many through with 3 tables
Banging my head with this one, I've asked something similar, but getting nowhere with it. So I have three tables Superheros, Powers, and Teams. A superhero can have many powers and many teams, a power ...
0
votes
1answer
28 views
Rails - Show which client a project belongs to in the project index view
A client has_many projects. A project belongs_to a client.
How do I show in the index view, inside the @projects loop, which client that project belongs to?
This is what I'm trying to do in the ...
3
votes
1answer
251 views
Ember Data - hasMany/belongsTo with different model than default
In Ember Data, how do you define a belongsTo/hasMany association that uses a different model or foreign key than what would be chosen by default?
For example, I have an App.Item that belongsTo an ...
2
votes
1answer
62 views
belongs_to relationship not working
I have following active record class
class Car < ActiveRecord::Base
belongs_to :owner
end
in the code when I try this
Car.first.owner
it gives me error "undefined method owner"
Can any one ...
0
votes
1answer
59 views
ActiveRecord: difference between collection << object and association = (associate)
Let us take an example:
class Subscription < ActiveRecord::Base
belongs_to :user
end
class User < ActiveRecord::Base
has_many :subscriptions
end
u1 =User.new
s1 = Subscription.new
...
0
votes
1answer
33 views
Rails how to add belongs_to to gem file
This is difficult for me to explain, but I need to add the belongs_to attribute to a model of a gem.
I am using the APN_on_rails gem to add push notification functionality to my web app. In this gem ...
0
votes
1answer
127 views
undefined method for nil:NilClass
upload controller
def create
@upload = @order.uploads.build(params[:uploadtwo])
respond_to do |format|
if @upload.save
format.html { redirect_to root_path, :notice => 'File was ...
0
votes
1answer
42 views
Many model records in has_many-relationship columns
I have a Brand model and a Price model, thus:
brand.rb
class Brand < ActiveRecord::Base
attr_accessible :name, :a4_single, :a4_double, :a3_double, :two_a3_double
has_many :prices, :dependent ...
0
votes
0answers
124 views
Rails belongs_to foreign_key is returning nil when searching
I am trying to construct a rails belongs_to association using the foreign_key option in my model class.
Server Class ---
class Server < ActiveRecord::Base
attr_accessible :desig, :hwType, ...
1
vote
1answer
299 views
Grails: mapping column names of a field and a belongsTo of the same type
I'm trying to map the column names of this class:
class Amount{
String total //Total amount of something
String type //Type of amount, Dollars, %, Times something
Bonification ...
0
votes
0answers
70 views
Nested form for a model which belonges to few models
I have a problem with nested form for model which belonges to few other models.
I am using mongoid 3.
class Item
include Mongoid::Document
field :name, type: String
belongs_to :container, ...
