Please excuse a newbie question, but I couldn''t find anything by searching the archives. What I want to know is how to have multiple references to the same class/table within a class. For example, let''s say I have a table called People: create table people ( id serial8 primary key ,name); which just holds a list of the people in the database. Then I have another table like this: create table log ( id serial8 primary key ,created_by int8 references people(id) ,created_for int8 references people(id) ); Now, in my Model class, how do I handle this? class Log < ActiveRecord::Base has_one :People end Is there some way to differentiate the two different has_one references but keep them looking at the same table? Thanks much Jeff -- Posted via http://www.ruby-forum.com/.
class Log < ActiveRecord::Base belongs_to :crtd_by, :class_name => "People", :foreign_key => "created_by" belongs_to :crtd_for, :class_name => "People", :foreign_key => "created_for" end ..or something along those lines. -- Posted via http://www.ruby-forum.com/.
you are confusing has_one and belongs_to. just remember that whatever table contains the foreign key is the one that is on the belongs_to side of the relationship. are you sure you want has_one instead of has_many? using has_one means that a person can only ever have at most one created_by log and one created_for log. class Person < ActiveRecord::Base has_many :created_logs, :class_name => "Log", :foreign_key => "created_by" # a person can create many logs has_many :assigned_logs, :class_name => "Log", :foreign_key => "created_for" # a person can have many logs created for them end # person.created_logs < -- all the logs that the person created # person.assigned_logs < -- all the logs assigned (created_for) to that person class Log < ActiveRecord::Base belongs_to :created_by, :class_name => "Person", :foreign_key => "created_by" belongs_to :created_for, :class_name => "Person", :foreign_key => "created_for" end # log.created_by < -- person who created the log # log.created_for < -- person the log is assigned to feel free to rename the associations. as long as you specify the class name and foreign key, you can name the association whatever you want. On 4/11/06, Jeff LaMarche <jeff_lamarche@mac.com> wrote:> > Please excuse a newbie question, but I couldn''t find anything by > searching the archives. > > What I want to know is how to have multiple references to the same > class/table within a class. For example, let''s say I have a table called > People: > > create table people ( > id serial8 primary key > ,name); > > which just holds a list of the people in the database. Then I have > another table like this: > > create table log ( > id serial8 primary key > ,created_by int8 references people(id) > ,created_for int8 references people(id) > ); > > Now, in my Model class, how do I handle this? > > class Log < ActiveRecord::Base > has_one :People > end > > Is there some way to differentiate the two different has_one references > but keep them looking at the same table? > > Thanks much > Jeff > > -- > Posted via http://www.ruby-forum.com/. > _______________________________________________ > Rails mailing list > Rails@lists.rubyonrails.org > http://lists.rubyonrails.org/mailman/listinfo/rails >-------------- next part -------------- An HTML attachment was scrubbed... URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060411/d46c5f70/attachment.html
Chris Hall wrote:> are you sure you want has_one instead of has_many? using has_one means > that > a person can only ever have at most one created_by log and one > created_for > log.Well, this was just an example to illustrate the question. My actual tables and classes have a lot of extraneous stuff in them that might have gotten in the way of what I was asking. Thanks much for the information! I appreciate the help. -- Posted via http://www.ruby-forum.com/.
Saving the planet from good variable names. One byte at a time. On 4/11/06, Martin Bernd Schmeil <bschmeil@autoscout24.com> wrote:> class Log < ActiveRecord::Base > belongs_to :crtd_by, :class_name => "People", :foreign_key => > "created_by" > belongs_to :crtd_for, :class_name => "People", :foreign_key => > "created_for" > end > > ..or something along those lines. > > > -- > Posted via http://www.ruby-forum.com/. > _______________________________________________ > Rails mailing list > Rails@lists.rubyonrails.org > http://lists.rubyonrails.org/mailman/listinfo/rails >-- Tobi http://shopify.com - modern e-commerce software http://typo.leetsoft.com - Open source weblog engine http://blog.leetsoft.com - Technical weblog
Tobias L?tke wrote:> Saving the planet from good variable names. One byte at a time. > > On 4/11/06, Martin Bernd Schmeil <bschmeil@autoscout24.com> wrote:Apologizes for the variable names in my example. It was close to my lunch break and I couldn''t complete my posting. Since Jeff was using foreign key names without the id I just made sure that the association names were not identical to the foreign key column names. Otherwise Jeff might have run into trouble when trying to assign an int to the variable like this log.created_for = params[:created_for] (Error: trying to assign Fixnum, expected People) Since Jeff asked a "newbie question" I wanted to prevent him from raising another "newbie problem" by using a rather bad variable name. Again apologizes... -- Posted via http://www.ruby-forum.com/.