Models can associate in three main ways: one to many, one to one, and many to many.
0
votes
1answer
9 views
Many-to-many associations in a single model (rails)
Lets say I have the following table of Users
id, type
1, "A"
2, "B"
3, "B"
4, "A"
5, "B"
6, "A"
There are two user types. "A" users, and "B" users. "A"s can be connected ...
0
votes
0answers
18 views
Rails : change column name in activerecord association
I looked at http://edgeguides.rubyonrails.org/association_basics.html wihout finding an answer.
In Rails, I use an ActiveReccord association between two models to implement a friendship relation :
...
0
votes
0answers
12 views
Source Reflection Errors with has_many :through
I'm attempting to create a system where my site's users can favorites pages. Those pages have two types, either clubs or sports. So, I have four models, associated as such:
User Model:
class User ...
0
votes
2answers
52 views
Filter by association in ruby on rails using active admin gem
I have two models: Login and Account
class Login
belongs_to :account
attr_accessible: first_name, primary_admin # primary_admin is boolean
end
class Account
has_many: logins
def primary_admin
...
0
votes
1answer
15 views
Rails: saving from a multiple select tag into a has_many_and_belongs_to_many association
I have a select tag in multiple mode, and want my controller update action to save the multiple entries in to a has_many_and_belongs_to_many association table. How should my controller update action ...
0
votes
0answers
8 views
Is this the wrong self-referential association technique for User, Landlord, Tenant, rails associations?
Would this be the best way to handle one class having two self-associations?
class User < ActiveRecord::Base
has_many :leases
has_many :landlords, :through => :leases
has_many :inverse_leases, ...
1
vote
2answers
68 views
Comparing attributes and assign a value
This is the first time approaching something like this, so am looking for some advice/best practice to achieve my goal. I want to assign a value (score) to the result of a prediction made by a ...
0
votes
1answer
16 views
Ruby on Rails: How to display everything associated with user?
I have some associations that is connected to the user
User model
has_many :lists
has_many :ideas
How do I display the lists and ideas in the user's page?
In my users controller, show method
...
0
votes
0answers
26 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 ...
0
votes
0answers
24 views
employee - manager class diagram, representing additional constraints on manager entity
I come from an ER background and am shifting to UML diagrams. I am constructing an UML diagram for a real work scenario. One of the class diagram I am constructing is a Employee - Manager class ...
0
votes
1answer
32 views
Changing Model associations after running migration
I have a Devise User model with the following contents for which I did run migration.
class User < ActiveRecord::Base
# Include default devise modules. Others available are:
# ...
0
votes
0answers
25 views
has_many_and_belongs_to equivalent in LINQ to SQL Windows Phone
I learnt that Association attribute handles one to many inherently with ThisKey and OtherKey.
We generally map many-to-many relations using a JOIN table, creating manually.
But in Rails we can use ...
0
votes
0answers
26 views
Rails combine results of multiple includes statements
The scenario is that i need to generate notifications on updates. Now i have updates possible on three tables namely Products, Users and Notifications. Now a User can "follow" any of the three things ...
0
votes
0answers
64 views
n:m self-join with ruby on rails active record
I'm trying to accomplish the following with ruby on rails, and I have problems to get the model-configuration right:
I would like to model possible connections between airports. I created the ...
0
votes
1answer
29 views
One-to-Many Relation [Ruby on Rails]
I don't know if the relation between property and owner working or not , when I tried a query I got this error:
Loading development environment (Rails 3.2.13)
irb(main):001:0> ...
0
votes
2answers
26 views
Rails - Show all models that belongs_to this User
If I have a User that has_many :problems, assuming I have set up the necessary association between User and Problem , how can I do something like:
# UsersController.rb
def students_problems
...
0
votes
0answers
17 views
Active Record Reputation for model associations
I have two models:
Group.rb
has_many :microposts
Micropost.rb
belongs_to :group
has_reputation :votes, source: :user, aggregated_by: :sum
The model Micropost has reputation by votes and belongs to ...
1
vote
0answers
43 views
Same Association Twice, Different Names, Second Uses Wrong Column
I'm trying to create two associations that are identical in nature but have two different names because they mean different things. I have a feeling that this is a syntax issue I can't quite get ...
0
votes
1answer
32 views
ActiveRecord - How to join association with pure SQL query
I'm doing the following query:
TaskCheck.find_by_sql ["SELECT task_checks.*, tasks.* FROM task_checks INNER JOIN tasks ON task_checks.task_id = tasks.id"]
It returns TaskCheck objects but when I ...
1
vote
1answer
26 views
Reordering Uniquely Ordered Models in ActiveRecord Association
I have List model that has many items. Those items have a priority that is unique in the scope of the list.
class List < ActiveRecord::Base
has_many :items
accepts_nested_attributes_for :items
...
0
votes
1answer
31 views
Rails models: has_many_and_belongs_to_one
I have two models with a has_many association. However, from the "many", only one is primary. Here's one way to design it:
Approach #1
class Person < ActiveRecord:Base
has_many :address
...
1
vote
1answer
43 views
one month rails user specific routes and pin controller
I want to alter the path generated by my pins to accommodate an admin user to access another users pins and be able to delete them.
I have created a user model with devise and added the admin ...
0
votes
0answers
36 views
Rails: ActiveRecord Query with Associations and OR Operator
I can't seem to find a "Rails-Way" for the following query:
Here are my model definitions:
class Backend::Order < ActiveRecord::Base
has_one :backend_order_filter, :class_name => ...
0
votes
1answer
49 views
How to map rows of two tables to each other based on the relevance in MySQL?
I have following tables in my database: courses (whole data of sports classes), coursedata (with copies of courses.title and courses.description -- needed for FULLTEXT index / relevance search), ...
0
votes
1answer
79 views
Cakephp 2.3: Build model associations when foreign keys do not match model columns
How, generally, can I create foreign keys (ie. columns) in one table that Cakephp associates, by different names, with columns of another model? Incidentally, I am using bake all to get started with ...
0
votes
1answer
26 views
Override has_many << function
I have some classes in a Rails 2 application: a Group have some group_items. Each group_item has a polymorphic ìtem : user or contact.
class Group < AR::Base
has_many :group_items
has_many ...
0
votes
2answers
98 views
nested_form not saving to model Rails 3
I think I am on the right path for the following, though i cannot save the form data to the model. I have 2 models
class Prediction < ActiveRecord::Base
attr_accessible :home_team, :away_team, ...
0
votes
2answers
24 views
Query Model and Join Associated Model
I wish to select all of the QuizVersion model information and the related Quiz model all in one line.
Below is what I have so far and It's not outputting any Quiz information, just QuizVersion ...
1
vote
3answers
53 views
Association has_many Rails Models
I have three models, user, post and book, associated through a fourth, kms.
Post model has many kms and books with through
Book model has many kms and posts with through
km belongs to book and post
...
0
votes
0answers
37 views
How can I render partial in show.html.erb
I have these two models in my Ruby on Rails application - Artist and Song. They are associated as follows:
class Artist < ActiveRecord::Base
has_many :songs
attr_accessible ...
0
votes
2answers
53 views
Saving to another Model database, with current Form record ID - Rails
I'm trying to get the text from a text_area field in a form to save to a database in a different Model with the current Model's ID.
Currently, this works but only will save integers. If I put text ...
0
votes
2answers
32 views
Issue in alias model name in rails
I have two models User and Dtype.
In users table I have two column named dtype_id and dtype_second which contains ID's of Dtype. Now I need to get both the columns values through association.
Using ...
0
votes
1answer
40 views
Rails: Profile Picture Model Association
I have a two models Users and Photos.
Right now, users can have many photos. I'm looking for the the best rails/database pattern for saying they have one profile picture. Which is one of the photos ...
1
vote
0answers
67 views
How can I set the belongs_to association of a new object via a dropdown menu in the form?
So I'm new to Rails, and I've just finished going through Michael's Hartl's railstutorial.org.
I'm now building my first app, and i'm encountering my first road block.
So basically i've got Bubbles ...
0
votes
1answer
36 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
2answers
35 views
How to model this rails relationship, “has two”?
Imagine a roster of characters in a game.
I need to let users vote on which character counters which character and be able to save that in the database.
Batman is strong against Superman
Batman is ...
1
vote
1answer
141 views
Associations strange behavior
I found a following issue regarding EF5 running under .NET 4.0, in Model First approach:
I have following auto-generated entity:
Partial Public Class Notice
Private _id As Integer
Public ...
0
votes
2answers
49 views
How to declare associations in a Ruby on Rails model associated to itself?
In my Ruby on Rails app, I have an Idea model with a father_id attribute.
The model definition declares the following associations :
class Idea < ActiveRecord::Base
belongs_to :father, ...
1
vote
1answer
46 views
Fetch records with double deep associated records
I have a 3 simple models, let's call them Sector, Department, Office.
Sector has many departments and departments has many offices.
Now I want to get all the sectors with at least a department that ...
0
votes
2answers
37 views
How do I collect all the topics that are owned by the members of the groups I am a member of?
This may be tough for me to explain, so if it's not clear just let me know so I can edit as needed!
I have the following example:
class User < ActiveRecord::Base
has_many :topics
has_many ...
0
votes
1answer
44 views
How do I use the redtape gem? - Looking for a clearer usage example/sample
Question: Does anyone out there have a simple example of how to use the redtape gem? I'm hoping for basic MVC examples that show me how it all comes together.
A different but related question: What ...
3
votes
1answer
110 views
Rails - How to manage nested attributes without using accepts_nested_attributes_for?
My problem is I've run into limitations of accepts_nested_attributes_for, so I need to figure out how to replicate that functionality on my own in order to have more flexibility. (See below for ...
0
votes
3answers
53 views
Rails Model Association for a Podcast directory (Polymoprhic or HABTM)
I'm creating an app that will be a directory for podcast/radio shows (mainly, for shownotes of each show). I'm stuck on how to model the People in this app, mainly because a person can be both a guest ...
1
vote
1answer
92 views
Ruby DataMapper: model associations review, model updates after finalize, and associating slightly autonomous records
I am brand new to Ruby and even newer to DataMapper, or any ORM for that matter. I come from a Perl background and am not really an OOP type of developer. So I'm wandering in unknown territory here. ...
0
votes
0answers
45 views
How can i get the value for association from different fields and save all the values in rails?
I have following requirements
I have three tables namely A, B and C.
And i have has_and_belongs_to_many relationship between table A and table C.
I have a form for table A where i have number of ...
0
votes
1answer
31 views
Having a hard time with has_and_belongs_to_many associations. Not sure how to add objects to a specified instance of its “belongs_to” table
I'm building an app where a User can create a Group and then invite other Users to join his group. A User can join many Groups and a Group will include many Users. I'm confused as to how I can add a ...
0
votes
1answer
158 views
CakePHP 2.3 model association using finderQuery works with Model->read() but not with Model->find()
I have nearly got Cake to do what I want here but not quite and I think it's because there is a gap in my knowledge.
I have imported a database table of UK postcodes in to my cakePHP app. Here is the ...
0
votes
1answer
80 views
CakePHP Associations error? Won't save associated table
I created a user profile where users can add their information. So on URL section I want them to put their other links like Facebook, www.facebook.com/user etc.
But when I click Save nothing updates?
...
0
votes
1answer
46 views
Cake PHP Model Associations - What am I doing wrong?
No matter how many times I read through the documentation, look at examples I cannot get my model to "associate" with another.
Here is my example:
I have a table called kits and a table called ...
0
votes
0answers
39 views
Rails 3.2 updating nested models
I have a table of resource names that is made up of controller names and action names.
class ControllerAction < ActiveRecord::Base
belongs_to :controller_names
belongs_to :action_names
end
...



